-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 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
{
"name": "tile-generator",
"version": "0.1.0",
"private": true,
"dependencies": {},
"scripts": {
"add-app-engine": "lerna add --scope=@tile-generator/app-engine",
"add-client": "lerna add --scope=@tile-generator/react-app",
"add-common": "lerna add --scope=@tile-generator/common",
"add-server": "lerna add --scope=@tile-generator/server",
"audit": "lerna-audit",
"bootstrap": "lerna bootstrap",
"build-client-prod": "npm install && npm run build-common && npm install && npm run build-client",
"build-client": "lerna run build --scope=@tile-generator/react-app",
"build-common": "lerna run build --scope=@tile-generator/common",
"build-server": "lerna run build --scope=@tile-generator/server",
"build": "lerna run build",
"clean": "lerna run clean",
"db:create": "sh ./scripts/create_db.sh",
"postinstall": "npm run bootstrap",
"pub": "lerna publish",
"reinstall-common": "./scripts/reinstall_common.sh"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"lerna": "^3.20.2",
"lerna-audit": "^1.2.0"
}
}