-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
65 lines (65 loc) · 2.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
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": "heroes-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start-ng": "ng serve --proxy-config proxy.conf.json --port 7626 --open",
"start": "WWW=dist/heroes-angular node server.js",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"map": "source-map-explorer dist/heroes-angular/*es2015*.js*",
"quick": "concurrently \"npm run backend\" \"npm run start-ng\"",
"cypress": "npx cypress open",
"e2e": "concurrently \"npm run quick\" \"npm run cypress\"",
"backend": "json-server --watch db.json --routes routes.json --port 7627 --middlewares ./node_modules/json-server-reset"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.0.1",
"@angular/common": "^11.0.1",
"@angular/compiler": "^11.0.1",
"@angular/core": "^11.0.1",
"@angular/forms": "^11.0.1",
"@angular/platform-browser": "^11.0.1",
"@angular/platform-browser-dynamic": "^11.0.1",
"@angular/router": "^11.0.1",
"@ngrx/data": "^10.0.1",
"@ngrx/effects": "^10.0.1",
"@ngrx/entity": "^10.0.1",
"@ngrx/store": "^10.0.1",
"@ngrx/store-devtools": "^10.0.1",
"bulma": "^0.8.2",
"core-js": "^3.7.0",
"express": "^4.16.4",
"font-awesome": "^4.7.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1100.2",
"@angular/cli": "^11.0.2",
"@angular/compiler-cli": "^11.0.1",
"@angular/language-service": "^11.0.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^14.14.8",
"codelyzer": "^6.0.0",
"concurrently": "^5.3.0",
"cypress": "^5.6.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"json-server": "^0.16.3",
"json-server-reset": "^1.3.0",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"source-map-explorer": "^2.5.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
}
}