-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.31 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
{
"name": "convoy-frontend",
"version": "1.0.1",
"private": true,
"description": "Convoy homework for designing web frontend for truckers' offers and applications",
"homepage": "https://github.com/ZehuaZhang/convoy-frontend",
"keywords": [
"react",
"redux",
"typescript",
"webpack",
"convoy",
"frontend"
],
"author": ".zZehua",
"main": "index.js",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --port $PORT --host 0.0.0.0 --disable-host-check --progress --color --config config/webpack.config.js" ,
"local": "yarn start --open --hot",
"build": "webpack -p --progress --colors --config config/webpack.config.js",
"prettier": "prettier --write \"src/**/*.{ts,tsx,css}\""
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/classnames": "^2.2.7",
"@types/history": "^4.7.2",
"@types/node": "^13.1.8",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-redux": "^7.0.0",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^5.1.3",
"@types/redux-actions": "2.3.1",
"@types/redux-logger": "^3.0.7",
"@types/redux-thunk": "^2.1.0",
"@types/superagent": "^4.1.4",
"@types/webpack": "^4.4.23",
"@types/webpack-env": "1.13.6",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"html-loader": "^1.0.0-alpha.0",
"html-webpack-plugin": "^4.0.0-alpha",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"react-hot-loader": "^4.6.3",
"redux-devtools-extension": "^2.13.7",
"sass-loader": "^8.0.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"typescript": "^3.7.5",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"superagent": "^5.2.1"
}
}