-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ts-react-toolbox",
"version": "2.0.2",
"description": "Opinionated toolbox boilerplate to create Typescript React components",
"main": "src/index.js",
"repository": "git@github.com:zzarcon/ts-react-toolbox.git",
"author": "Hector Leon Zarco Garcia <hezarco@gmail.com>",
"license": "MIT",
"bin": {
"ts-react-toolbox": "./bin/ts-react-toolbox"
},
"scripts": {
"build": "tsc",
"add_permission": "chmod +x ./bin/ts-react-toolbox.js",
"cli": "./bin/ts-react-toolbox.js",
"ts:cli": "pnpm tsc && pnpm cli",
"rename_bin": "mv bin/ts-react-toolbox.js bin/ts-react-toolbox",
"release": "npm version patch && git push --tags && git push && pnpm publish",
"clean": "rm -rf src/**/*.js",
"prepublishOnly": "pnpm clean && pnpm build && pnpm rename_bin",
"test": "echo \"no tests\""
},
"dependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"@emotion/react": "^11.7.1",
"@types/enzyme": "^3.10.5",
"@types/express": "^4.17.13",
"@types/gh-pages": "^3.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/serve-static": "^1.13.10",
"@types/webpack": "^5.28.0",
"chalk": "^2.3.2",
"enzyme": "^3.11.0",
"gh-pages": "^3.1.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gh-corner": "^1.1.3",
"tmp": "^0.0.33",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"files": [
"src",
"bin",
"static",
"static/.travis.yml",
"jest.config.js",
"setupTests.js",
"tsconfig.json",
"tsconfig.es5.json",
"tsconfig.es2015.json",
"configs"
],
"keywords": [
"toolbox",
"react",
"ts",
"typescript",
"config",
"webpack",
"webpack-server",
"format",
"test",
"deploy",
"release"
],
"devDependencies": {
"@types/tmp": "^0.0.33"
},
"resolutions": {
"@types/node": "20.8.9"
}
}