-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·67 lines (67 loc) · 2.21 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
{
"name": "ts-react-framework",
"version": "1.0.0",
"description": "",
"main": "./src/index.tsx",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open --config webpack.config.ts --mode development",
"dev": "cross-env NODE_ENV=dev webpack --config webpack.config.ts --mode production",
"test": "cross-env NODE_ENV=development webpack-dev-server --open --config webpack.config.ts --mode production",
"uat": "cross-env NODE_ENV=uat webpack --config webpack.config.ts --mode production",
"production": "cross-env NODE_ENV=production webpack --config webpack.config.ts --mode production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/lodash": "^4.14.137",
"@types/react-redux": "^7.1.2",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^4.3.5",
"@types/redux": "^3.6.0",
"@types/redux-saga": "latest",
"axios": "latest",
"lodash": "^4.17.15",
"normalize.css": "^8.0.1",
"react-redux": "^7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-saga": "latest",
"moment": "latest"
},
"devDependencies": {
"cross-env": "^5.2.0",
"@types/history": "^4.7.3",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"history": "^4.9.0",
"http-proxy-middleware": "^0.19.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-loader": "^6.0.4",
"typescript": "^3.6.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1",
"clean-webpack-plugin": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"less": "latest",
"less-loader": "latest",
"autoprefixer": "latest",
"postcss-loader": "latest",
"css-loader": "latest",
"style-loader": "latest",
"awesome-typescript-loader": "^5.2.1",
"babel-plugin-import": "^1.11.0",
"url-loader": "^1.1.2"
}
}