forked from jawache/angularjs-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.89 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "angularjs-migration-angular16",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"server": "cp ./data/orig-db.json ./data/db.json && json-server --watch ./data/db.json",
"setup": "bower install",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@angular/upgrade": "^16.2.8",
"angular": "1.8.0",
"angular-animate": "1.8.0",
"angular-auto-validate": "^1.19.0",
"angular-ladda": "^0.4.3",
"angular-resource": "1.8.0",
"angular-spinner": "^1.0.1",
"angular-strap": "^2.3.12",
"angular-ui-router": "^0.4.2",
"angular2-ladda": "^5.0.0",
"angularjs-toaster": "^2.1.0",
"bootstrap": "3.3.2",
"bootstrap-additions": "0.3.1",
"font-awesome": "4.3.0",
"jquery": "2.1.3",
"ng-infinite-scroll": "1.2.1",
"rxjs": "~7.8.0",
"spin.js": "^4.1.1",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.5",
"@angular/cli": "^16.2.5",
"@angular/compiler-cli": "^16.2.0",
"@types/angular": "^1.8.6",
"@types/jasmine": "~4.3.0",
"bower": "^1.8.0",
"jasmine-core": "~4.6.0",
"json-server": "^0.9.6",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"rimraf": "^5.0.5",
"serve": "^5.1.2",
"ts-loader": "^9.4.4",
"typescript": "~5.1.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}