-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
{
"name": "cobra-front",
"version": "0.0.1",
"description": "game client",
"main": "index.js",
"homepage": "https://uncle-ara.github.io/todo",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"prettier-check": "prettier --check ./src",
"prettier-fix": "prettier --write ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"author": "snatvb",
"license": "ISC",
"dependencies": {
"@types/classnames": "^2.3.1",
"@types/uuid": "^8.3.0",
"antd": "^4.15.2",
"normalize.css": "8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.2",
"react-router-dom": "^5.2.0",
"redux-persist": "^6.0.0",
"redux-saga": "1.1.3",
"typesafe-actions": "5.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "7.13.1",
"@babel/preset-env": "7.13.5",
"@babel/preset-react": "7.12.13",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@types/react-redux": "7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-persist": "^4.3.1",
"@types/redux-saga": "0.10.5",
"babel-loader": "8.2.2",
"cross-env": "7.0.3",
"css-loader": "5.1.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"gh-pages": "3.2.0",
"html-loader": "2.1.1",
"html-webpack-plugin": "5.2.0",
"husky": "5.1.1",
"mini-css-extract-plugin": "1.3.9",
"node-sass": "5.0.0",
"prettier": "2.2.1",
"sass": "1.32.8",
"sass-loader": "11.0.1",
"style-loader": "2.0.0",
"ts-loader": "8.0.17",
"typescript": "4.2.2",
"webpack": "5.24.2",
"webpack-cli": "4.5.0",
"webpack-dev-server": "3.11.2",
"webpack-manifest-plugin": "^3.1.1",
"webpack-nano": "^1.1.1"
}
}