-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"name": "react-ts-webpack",
"version": "1.0.0",
"description": "React typescript webpack boilerplate",
"main": "index.tsx",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"lint": "./node_modules/eslint/bin/eslint"
},
"keywords": [
"react",
"webpack",
"typescript"
],
"author": "ThunderDev1",
"license": "ISC",
"dependencies": {
"@hot-loader/react-dom": "16.8.6",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.8.4",
"react-router-dom": "5.0.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"@types/html-webpack-plugin": "3.2.0",
"@types/node": "11.13.9",
"@types/react": "16.8.15",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "4.3.2",
"@types/webpack": "4.4.29",
"@types/webpack-dev-server": "3.1.5",
"@typescript-eslint/eslint-plugin": "1.7.0",
"@typescript-eslint/parser": "1.7.0",
"babel-loader": "8.0.5",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-react": "7.12.4",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"prettier": "1.17.0",
"ts-loader": "5.4.5",
"ts-node": "8.1.0",
"typescript": "3.4.3",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1"
}
}