-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@rispa/server",
"rispa:name": "server",
"version": "4.2.1",
"description": "Rispa Server plugin",
"license": "MIT",
"rispa:activator": "./src/activator.js",
"main": "./src/ServerPluginApi.js",
"dependencies": {
"@rispa/config": "4.2.x",
"@rispa/core": "4.2.x",
"@rispa/webpack": "4.2.x",
"better-npm-run": "0.1.0",
"chalk": "^2.4.0",
"compression": "^1.7.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"http-proxy": "^1.16.2",
"ip": "^1.1.5",
"serve-favicon": "^2.5.0",
"source-map-support": "^0.5.4"
},
"devDependencies": {
"@rispa/eslint-config": ">=3.0.0"
},
"scripts": {
"start-dev": "better-npm-run server-dev",
"start-prod": "better-npm-run server-prod",
"start-dev-client": "better-npm-run server-dev-client",
"start-prod-client": "better-npm-run server-prod-client",
"start-profile": "better-npm-run server-profile",
"lint": "rispa-eslint .",
"lint:fix": "rispa-eslint . --fix"
},
"betterScripts": {
"server-dev": {
"command": "node ./bin/server.js",
"env": {
"NODE_ENV": "development",
"DEBUG": "rispa:*"
}
},
"server-prod": {
"command": "node ./bin/server.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "rispa:*"
}
},
"server-dev-client": {
"command": "node ./bin/server.js",
"env": {
"NODE_ENV": "development",
"DISABLE_SSR": true,
"DEBUG": "rispa:*"
}
},
"server-prod-client": {
"command": "node ./bin/server.js",
"env": {
"NODE_ENV": "production",
"DISABLE_SSR": true,
"DEBUG": "rispa:*"
}
},
"server-profile": {
"command": "node ./bin/server.js",
"env": {
"NODE_ENV": "development",
"PROFILE_SSR": true,
"DEBUG": "rispa:*"
}
}
}
}