forked from DanWahlin/Angular-JumpStart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "angular-jump-start",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "node server.js",
"build": "ng build angular-jumpstart",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"cypress": "concurrently \"npm start\" \"npx cypress open\"",
"cypress:headless": "concurrently \"npm start\" \"npx cypress run\"",
"playground": "angular-playground",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "npm run docs:json && build-storybook"
},
"dependencies": {
"@angular/animations": "^16.0.2",
"@angular/common": "^16.0.2",
"@angular/compiler": "^16.0.2",
"@angular/core": "^16.0.2",
"@angular/forms": "^16.0.2",
"@angular/platform-browser": "^16.0.2",
"@angular/platform-browser-dynamic": "^16.0.2",
"@angular/router": "^16.0.2",
"@ngx-env/builder": "^2.2.0",
"express": "^4.18.2",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.2",
"@angular/cli": "^16.0.2",
"@angular/compiler-cli": "^16.0.2",
"@angular/elements": "^16.0.2",
"@angular/language-service": "^16.0.2",
"@babel/core": "^7.16.0",
"@compodoc/compodoc": "^1.1.19",
"@storybook/addon-actions": "^7.0.12",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/angular": "^7.0.12",
"@storybook/builder-webpack5": "^7.0.12",
"@storybook/manager-webpack5": "^6.5.16",
"@types/googlemaps": "3.43.3",
"@types/jasmine": "~3.10.0",
"@types/node": "^20.2.1",
"@webcomponents/custom-elements": "^1.6.0",
"angular-playground": "^11.0.0",
"babel-loader": "^8.2.5",
"concurrently": "^8.0.1",
"jasmine-core": "~3.7.1",
"opn": "^6.0.0",
"ts-node": "~7.0.0",
"typescript": "~4.9.5"
}
}