-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 974 Bytes
/
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
{
"name": "archipel",
"productName": "Archipel: Somoco",
"version": "0.1.0",
"license": "GPL-3.0",
"description": "Archipel monorepo",
"author": "Archipel:Somoco Team",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"server": "cd packages/backend; ARCHIPEL_STATIC_PATH=../app/dist npm run start --",
"start": "npm run server --",
"electron": "cd packages/electron; NODE_ENV=development npm run start",
"watch": "cd packages/app; npm run watch",
"build": "cd packages/app; npm run build",
"dev": "NODE_ENV=development npm-run-all -p watch server electron",
"ci-release": "cd packages/electron; npm run ci-release",
"lint": "standard",
"heroku-postbuild": "npm run bootstrap && npm run build",
"test": "cd packages/backend; npm run test"
},
"standard": {
"ignore": []
},
"devDependencies": {
"lerna": "^3.13.0",
"npm-run-all": "^4.1.3",
"standard": "^12.0.1",
"tape": "^4.10.0"
}
}