-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.96 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
{
"name": "square-dashboard",
"version": "1.0.0",
"description": "Square Dashboard: React Single Page Application",
"author": "Edward Clark",
"license": "MIT",
"main": "index.tsx",
"scripts": {
"start": "npx webpack serve",
"clear": "rimraf ./dist",
"build": "cross-env NODE_ENV=production npm run clear && webpack --mode production --progress",
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode development --open --hot",
"format": "prettier \"./src/**/*.+(js|jsx)\" --write",
"bundle-report": "webpack-bundle-analyzer --port 4200 dist/stats.json"
},
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^7.0.0",
"dotenv-webpack": "^1.7.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^4.5.2",
"prettier": "1.18.2",
"rimraf": "^3.0.0",
"terser-webpack-plugin": "^5.2.4",
"tslint": "^5.20.1",
"tslint-immutable": "^6.0.1",
"typescript": "^3.7.2",
"webpack": "^5.59.1",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.2",
"@types/styled-components": "^4.4.0",
"axios": "^0.23.0",
"core-js": "^3.4.7",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.3",
"reselect": "^4.0.0",
"styled-components": "^4.4.1",
"styled-normalize": "^8.0.6"
}
}