-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
34 lines (34 loc) · 1.22 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
{
"name": "ng-cookbook-second-edition",
"version": "1.0.0",
"description": "## Generate Projects",
"main": "index.js",
"scripts": {
"test": "sh scripts/run-tests.sh",
"e2e": "sh scripts/run-e2e.sh",
"postinstall": "cd codewithahsan && npm i && cd ../start && npm i && cd ../final && npm i",
"serve": "sh scripts/serve-projects.sh",
"serve:prod": "sh scripts/serve-projects-prod.sh",
"serve:fake-be": "cd ./codewithahsan && npx nx serve fake-be",
"create": "sh scripts/create-projects.sh",
"remove": "sh scripts/remove-projects.sh",
"copy": "sh scripts/copy-start-to-final.sh",
"copy:styles": "sh scripts/copy-styles.sh",
"serve:ng-jest-setup": "cd start/apps/chapter10/ng-jest-setup && npm start -- -o",
"test:ng-jest-setup": "cd start/apps/chapter10/ng-jest-setup && npm t",
"build": "sh scripts/build.sh",
"serve:static": "sh scripts/serve-static.sh",
"sanity": "sh scripts/sanity.sh",
"predeploy": "sh scripts/prepare-dist.sh",
"deploy": "gh-pages --dist dist/apps"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.4",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^7.6.0",
"gh-pages": "^6.1.1"
}
}