-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.65 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.65 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
83
84
{
"name": "ElectricAuto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config='webpack.dev.js'",
"prod": "NODE_ENV='production' webpack -p --config='webpack.prod.js'",
"ssr": " NODE_ENV='production' ./node_modules/webpack/bin/webpack.js --config webpack.prod.js && NODE_ENV='production' ./node_modules/webpack/bin/webpack.js --config webpack.server.js && node build/server.js",
"lint:ts": "tslint 'src/**/*.{ts,tsx,js}' --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"history": "^4.10.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.0",
"react-dom": "^16.13.1",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.1.3",
"react-id-swiper": "^3.0.0",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"swiper": "^5.3.7",
"universal-cookie": "^4.0.3"
},
"devDependencies": {
"@types/history": "^4.7.5",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-helmet": "^5.0.15",
"@types/react-hot-loader": "^4.1.1",
"@types/react-loadable": "^5.5.3",
"@types/react-redux": "^7.1.7",
"@types/react-router-config": "^5.0.1",
"@types/react-router-dom": "^5.1.4",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.1.0",
"css-loader": "^3.5.2",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"happypack": "^5.0.1",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^0.9.0",
"mobile-detect": "^1.4.4",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"react-helmet": "^6.0.0",
"react-hot-loader": "^4.12.20",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"thread-loader": "^2.1.3",
"ts-loader": "^6.2.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-node-externals": "^1.7.2",
"webpack-stats-plugin": "^0.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:ts"
}
}
}