-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "example-app",
"version": "10.0.0",
"license": "MIT",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"e2e": "ng e2e",
"bootstrap": "npm-run-all bootstrap:*",
"bootstrap:store": "npm explore @angular-redux/store -- npm run build",
"bootstrap:form": "npm explore @angular-redux/form -- npm run build",
"bootstrap:router": "npm explore @angular-redux/router -- npm run build"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@angular-redux/form": "10.0.0",
"@angular-redux/router": "10.0.0",
"@angular-redux/store": "10.0.0",
"core-js": "2.6.2",
"flux-standard-action": "2.0.3",
"ramda": "0.23.0",
"redux-logger": "3.0.6",
"redux-observable": "1.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.12.1",
"@angular/cli": "7.2.2",
"@angular/language-service": "7.2.0",
"@types/ramda": "0.24.18",
"@types/redux-logger": "3.0.6",
"ts-node": "7.0.1"
}
}