-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
83 lines (83 loc) · 3.16 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
{
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --disable-host-check --mode development --hot --progress --colors",
"watch": "./node_modules/.bin/webpack --watch --watch-poll=1000 --mode development --progress --hide-modules ",
"production": "./node_modules/.bin/webpack -p --mode production --progress --colors",
"prettier": "prettier --write \"src/**/*.{ts,tsx,css}\""
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "0.1.0-11",
"@hot-loader/react-dom": "^16.14.0",
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.11",
"@types/extract-text-webpack-plugin": "^3.0.4",
"@types/lodash-es": "^4.17.3",
"@types/node": "^9.6.61",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-router": "^4.4.5",
"@types/react-table": "^6.8.7",
"@types/webpack": "^3.8.20",
"antd": "^4.7.3",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^9.2.11",
"babel-plugin-import": "^1.13.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^0.28.11",
"error-overlay-webpack-plugin": "^0.1.7",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"glob-all": "^3.2.1",
"less": "^3.12.2",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^6.0.19",
"postcss-apply": "^0.12.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^3.1.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.1",
"postcss-nested": "^3.0.0",
"postcss-reporter": "^5.0.0",
"postcss-simple-vars": "^4.1.0",
"postcss-url": "^7.3.1",
"prettier": "^1.19.1",
"purgecss-webpack-plugin": "^1.6.0",
"react-hot-loader": "^4.13.0",
"style-loader": "^0.20.3",
"tailwindcss": "^1.9.6",
"terser-webpack-plugin": "^1.4.5",
"ts-import-plugin": "^1.6.6",
"ts-loader": "^7.0.5",
"typescript": "^3.9.7",
"url-loader": "^1.1.2",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"axios": "^0.21.1",
"classnames": "^2.2.5",
"emotion": "^9.2.12",
"lodash-es": "^4.17.15",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.3.1"
}
}