-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.78 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
{
"name": "animal-crossing-guide",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@types/react-router-dom": "^5.1.5",
"antd": "^4.5.4",
"date-fns": "^2.15.0",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"numeral": "^2.0.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-media": "^1.10.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^6.0.0",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.159",
"@types/lz-string": "^1.3.34",
"@types/node": "^14.6.0",
"@types/numeral": "0.0.28",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.2",
"@types/terser-webpack-plugin": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"extract-css-chunks-webpack-plugin": "^4.7.5",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.0",
"jest": "^26.4.0",
"less-loader": "^6.2.0",
"lint-staged": "^10.2.11",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^4.1.0",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": "prettier --write"
},
"scripts": {
"analyze": "TS_NODE_PROJECT=tsconfig.webpack.json webpack --profile --json | tail -n +5 > stats.json && webpack-bundle-analyzer stats.json dist",
"start": "TS_NODE_PROJECT=tsconfig.webpack.json webpack-dev-server --hot --progress --open",
"build": "TS_NODE_PROJECT=tsconfig.webpack.json webpack --mode=production",
"test": "jest --collect-coverage",
"lint": "eslint --ext .ts,.tsx src/"
},
"proxy": "http://localhost:8000"
}