-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
53
54
55
{
"name": "express-sample_app",
"version": "0.0.0",
"private": true,
"description": "Express sample application.",
"main": "server.js",
"scripts": {
"postinstall": "npm run build",
"build:dev": "env-cmd config/env.dev.js react-scripts start",
"build:prod": "env-cmd config/env.prod.js react-scripts build",
"build": "npm run build:prod",
"server:dev": "env-cmd config/env.dev.js node-dev server.js",
"server:prod": "env-cmd config/env.prod.js node server.js",
"start": "npm run server:prod",
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"body-parser": "^1.18.2",
"bootstrap": "^4.1.3",
"cookie-parser": "^1.4.3",
"create-react-app": "^1.5.2",
"debug": "~2.6.9",
"env-cmd": "^8.0.2",
"express": "^4.15.5",
"method-override": "^2.3.10",
"morgan": "~1.9.0",
"pg": "^7.4.1",
"pug": "^2.0.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^2.0.4",
"reactstrap": "^6.4.0",
"sequelize": "^4.33.4",
"sequelize-cli": "^4.0.0",
"serve-favicon": "^2.4.5"
},
"devDependencies": {
"node-dev": "^3.1.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"sqlite3": "^4.0.2"
},
"engines": {
"node": ">= 8.12.0 <9",
"npm": ">= 6.4.1 <7",
"yarn": ">= 1.9.4 <2"
},
"//": "react-scriptsにおいてHTTP HEADERのAcceptがtext/htmlであるリクエストをプロクシする先のサーバ",
"proxy": "http://localhost:3010",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}