-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
35 lines (35 loc) · 1.57 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
{
"name": "@klingon/core",
"description": "The perfect companion for @angular/cli",
"version": "0.1.0",
"author": {
"email": "[email protected]",
"name": "Wassim Chegham",
"url": "https://angular.run"
},
"devDependencies": {
"lerna": "^3.2.1"
},
"scripts": {
"publish:all": "lerna publish --skip-git --skip-npm && lerna exec -- npm publish --access=public",
"postinstall": "lerna bootstrap && opencollective-postinstall",
"start:ui": "cd packages/klingon-ui/ && npm start",
"start:ui:lint": "cd packages/klingon-ui/ && npm run lint",
"start:server": "cd packages/klingon-server/ && npm start",
"start:app": "cd packages/klingon-app && npm run start:dev",
"build:website": "cd packages/klingon-website/ && npm run build",
"build:server": "cd packages/klingon-server/ && npm run build",
"build:app:ui": "cd packages/klingon-ui/ && npm run build && cd - && cp -R ./packages/klingon-ui/dist ./packages/klingon-app/dist-ui",
"package:app:osx": "npm run build:app:ui && cd ./packages/klingon-app/ && npm run package:osx",
"package:app:linux": "npm run build:app:ui && cd ./packages/klingon-app/ && npm run package:linux",
"package:app:win": "npm run build:app:ui && cd ./packages/klingon-app/ && npm run package:win"
},
"dependencies": {
"opencollective-postinstall": "^2.0.0",
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/klingon"
}
}