-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 3.15 KB
/
package.json
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
83
84
85
86
87
88
89
90
91
{
"name": "react-typescript-boilerplate",
"version": "1.0.1",
"scripts": {
"watch:dev": "cross-env NODE_ENV=development WATCH_MODE=true webpack-dev-server --watch --progress --colors --config webpack/dev.config.ts",
"watch:prod": "cross-env NODE_ENV=production WATCH_MODE=true webpack-dev-server --watch --progress --colors --config webpack/dev.config.ts",
"build:dev": "cross-env NODE_ENV=development webpack --progress --colors --config webpack/dev.config.ts",
"build:prod": "cross-env NODE_ENV=production webpack --progress --colors --config webpack/dev.config.ts",
"bundle:analyze": "cross-env NODE_ENV=production webpack --progress --colors --config webpack/analyze.config.ts && webpack-bundle-analyzer webpack/dist/stats.json",
"test": "cross-env NODE_ENV=test jest",
"watch:test": "cross-env NODE_ENV=tet jest --watch",
"lint": "tslint --project tsconfig.json",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@reach/router": "^1.3.4",
"axios": "^0.21.1",
"deep-extend": "^0.6.0",
"react": "^16.14.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/axios": "^0.14.0",
"@types/circular-dependency-plugin": "^5.0.1",
"@types/copy-webpack-plugin": "^5.0.1",
"@types/deep-extend": "^0.4.31",
"@types/html-webpack-plugin": "^3.2.3",
"@types/jest": "^26.0.14",
"@types/jest-in-case": "^1.0.3",
"@types/reach__router": "^1.3.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/webpack": "^4.41.22",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@types/webpack-dev-server": "^3.11.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"circular-dependency-plugin": "^5.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"jest": "^25.5.4",
"jest-in-case": "^1.0.2",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^16.13.1",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"testing-library": "^0.0.2",
"ts-jest": "^25.5.1",
"ts-loader": "^8.1.0",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-no-circular-imports": "^0.7.0",
"tslint-react": "^4.2.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.9.6",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}