-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 934 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 934 Bytes
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
{
"name": "react-webpack",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack-dev-server --mode development",
"start": "yarn watch",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/lodash": "^4.14.138",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.14.3",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"source-map-loader": "^0.2.4",
"styled-components": "^4.3.2",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
}
}