-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.63 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
{
"name": "angular-full-starter",
"version": "0.0.1",
"description": "Starter for quick start. On board Angular, Nest, Material.",
"license": "MIT",
"scripts": {
"build:prod:client": "cd client && npm run build:prod",
"build:prod:server-api": "cd servers/api && npm run build",
"build": "npm run build:prod:server-api && npm run build:prod:client",
"test": "ng test --watch=false --code-coverage",
"install:server-api": "cd servers/api && npm i",
"install:server-prod": "cd servers/prod-static && npm i",
"install:client": "cd client && npm i",
"install": "npm run install:server-api && npm run install:server-prod && npm run install:client",
"prebuild": "rimraf dist",
"server:dev": "cd servers/api && npm run start:dev",
"client:dev": "cd client && npm run start:dev",
"bundle-report": "cd client && webpack-bundle-analyzer dist/client/stats.json",
"docs:client": "cd client && npm run docs",
"docs:server-api": "cd servers/api && npm run docs",
"client:lint": "cd client && npm run lint",
"server:lint": "cd servers/api && npm run lint",
"server-api:prod": "cd servers/api && npm run start:prod",
"server-static:prod": "cd servers/prod-static && npm start",
"start:prod": "npm run build:prod:client && npm run server-static:prod"
},
"husky": {
"hooks": {
"pre-commit": "npm run client:lint && npm run server:lint",
"pre-push": "npm run build"
}
},
"private": true,
"devDependencies": {
"@types/node": "^11.11.1",
"husky": "^1.3.1",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333"
},
"dependencies": {
"concurrently": "^4.1.0"
}
}