-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.29 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.29 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": "ng-cookbook-second-edition",
"version": "1.0.0",
"description": "## Generate Projects",
"main": "index.js",
"scripts": {
"test": "node scripts/run-tests.js",
"e2e": "node scripts/run-e2e.js",
"postinstall": "cd codewithahsan && npm i && cd ../start && npm i && cd ../final && npm i",
"serve": "node scripts/serve-projects.js",
"serve:prod": "node scripts/serve-projects-prod.js",
"serve:fake-be": "cd ./codewithahsan && npx nx serve fake-be",
"create": "node scripts/create-projects.js",
"remove": "node scripts/remove-projects.js",
"copy": "node scripts/copy-start-to-final.js",
"copy:styles": "node scripts/copy-styles.js",
"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": "node scripts/build.js",
"serve:static": "node scripts/serve-static.js",
"sanity": "node scripts/sanity.js",
"predeploy": "node scripts/prepare-dist.js",
"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"
},
"dependencies": {
"minimist": "^1.2.8"
}
}