-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "angular-assisted-token",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "concurrently --kill-others \"ng serve\" \"node server/server.js\"",
"serve": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.10",
"@angular/common": "^16.2.10",
"@angular/compiler": "^16.2.10",
"@angular/core": "^16.2.10",
"@angular/forms": "^16.2.10",
"@angular/platform-browser": "^16.2.10",
"@angular/platform-browser-dynamic": "^16.2.10",
"@angular/router": "^16.2.10",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "^0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.7",
"@angular/cli": "^16.2.7",
"@angular/compiler-cli": "^16.2.10",
"@angular/language-service": "^16.2.10",
"@types/node": "^18.18.6",
"codelyzer": "^6.0.2",
"concurrently": "^8.2.2",
"minimist": "^1.2.8",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}