-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "reactapp",
"version": "1.0.0",
"author": "Takatoshi Nakayama",
"license": "MIT",
"private": false,
"dependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"browserslist": "defaults, Edge 15",
"scripts": {
"build": "run-s build:dist",
"build:devel": "run-s typecheck bundle:devel",
"build:dist": "run-s typecheck bundle:dist",
"bundle": "run-s bundle:dist",
"bundle:devel": "webpack --mode=development",
"bundle:dist": "webpack --mode=production",
"typecheck": "tsc --noEmit",
"watch": "run-p watch:**",
"watch:bundle": "webpack-dev-server",
"watch:typecheck": "tsc --noEmit --watch"
}
}