-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
38
39
40
41
42
43
{
"name": "angular-jump-start",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"ng": "ng",
"start": "node server.js",
"build": "node scripts/build-env.js && ng build angular-jumpstart",
"build:watch": "node scripts/build-env.js && ng build angular-jumpstart --watch",
"dev": "node scripts/build-env.js && ng serve",
"cypress": "concurrently \"npm start\" \"npx cypress open\"",
"cypress:headless": "concurrently \"npm start\" \"npx cypress run\"",
"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": "^20.2.1",
"@angular/common": "^20.2.1",
"@angular/compiler": "^20.2.1",
"@angular/core": "^20.2.1",
"@angular/forms": "^20.2.1",
"@angular/platform-browser": "^20.2.1",
"@angular/platform-browser-dynamic": "^20.2.1",
"@angular/router": "^20.2.1",
"express": "^5.1.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "^20.2.0",
"@angular/cli": "^20.2.0",
"@angular/compiler-cli": "^20.2.1",
"@types/google.maps": "^3.58.1",
"open": "^10.2.0",
"typescript": "~5.9.2"
},
"optionalDependencies": {
"cypress": "^15.0.0"
}
}