-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
60 lines (60 loc) · 1.91 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-preload",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start-ng": "ng serve --proxy-config proxy.conf.json --port 7626 --open",
"start": "WWW=dist/angular-preload node server.js",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"map": "source-map-explorer dist/angular-preload/*es2015*.js*",
"full-stack": "concurrently \"npm run backend\" \"npm run start-ng\"",
"backend": "json-server-auth --watch db.json --routes routes.json --port 7627 --delay 1000 --middlewares ./node_modules/json-server-reset"
},
"private": true,
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@angular/animations": "^18.2.6",
"@angular/common": "^18.2.6",
"@angular/compiler": "^18.2.6",
"@angular/core": "^18.2.6",
"@angular/forms": "^18.2.6",
"@angular/platform-browser": "^18.2.6",
"@angular/platform-browser-dynamic": "^18.2.6",
"@angular/router": "^18.2.6",
"@ngrx/data": "^18.0.2",
"@ngrx/effects": "^18.0.2",
"@ngrx/entity": "^18.0.2",
"@ngrx/store": "^18.0.2",
"@ngrx/store-devtools": "^18.0.2",
"bulma": "^0.9.2",
"core-js": "^2.5.4",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.6",
"express": "^4.16.4",
"font-awesome": "^4.7.0",
"@ngrx/operators": "^18.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.6",
"@angular/cli": "^18.2.6",
"@angular/compiler-cli": "^18.2.6",
"@angular/language-service": "^18.2.6",
"@types/jasmine": "~3.10.0",
"concurrently": "^6.0.0",
"jasmine-core": "~4.0.0",
"json-server-auth": "^2.0.2",
"json-server-reset": "^1.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"source-map-explorer": "^2.5.2",
"typescript": "~5.4.5"
}
}