-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.57 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
{
"name": "tht-client",
"version": "1.0.0",
"description": "tht client",
"main": "src/index.js",
"author": "THThinkers",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config ./config/webpack.config.dev.js --hot",
"tsc": "tsc",
"build": "NODE_ENV=production webpack --config ./config/webpack.config.prod.js",
"start:prod": "node server",
"production": "npm run build && npm run start:prod"
},
"dependencies": {
"@fullpage/react-fullpage": "^0.1.10",
"@types/date-fns": "^2.6.0",
"@types/fullpage.js": "^2.9.0",
"@types/lodash-es": "^4.17.3",
"@types/qs": "^6.5.1",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/react-loadable": "^5.4.3",
"@types/react-redux": "^6.0.6",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^4.3.0",
"@types/react-select": "^2.0.15",
"@types/redux-immutable-state-invariant": "^2.0.4",
"@types/styled-components": "^4.1.14",
"@types/validator": "^10.11.0",
"axios": "^0.19.0",
"date-fns": "^1.30.1",
"express": "^4.16.4",
"fork-ts-checker-webpack-plugin": "^1.0.1",
"history": "^4.7.2",
"immer": "^2.1.1",
"lodash-es": "^4.17.11",
"qs": "^6.6.0",
"react": "^16.8.6",
"react-calendar": "^2.18.1",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.3.5",
"react-redux": "^7.0.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.1",
"redux": "^4.0.0",
"redux-immutable-state-invariant": "^2.1.0",
"redux-saga": "^0.16.0",
"regenerator-runtime": "^0.12.1",
"styled-components": "^4.2.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^4.0.0",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"autoprefixer": "^9.1.3",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"tslint": "^5.16.0",
"typescript": "^3.5.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
}
}