-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
{
"name": "ngrx-query-platform",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "git://github.com/isaacplmann/ngrx-query.git"
},
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:record": "ng serve --env=record",
"start:mock": "ng serve --env=mock",
"build": "npm run build:lib && npm run build:demo",
"build:demo": "ng build --prod",
"build:lib": "ng build ngrx-query --prod && copyfiles CHANGELOG.md README.md LICENSE dist/ngrx-query/",
"test": "ng test",
"lint": "ng lint",
"e2e": "cypress run",
"e2e:open": "cypress open",
"pub": "npm run pub:lib && npm run pub:demo",
"pub:demo": "npm run build:demo -- --base-href /ngrx-query/ && gh-pages -d dist/demo",
"pub:lib": "npm run build:lib && npm publish dist/ngrx-query",
"pack:lib": "npm run build:lib && cd dist && npm pack && copyfiles *.tgz ../ && cd .. && rimraf dist/*.tgz"
},
"private": false,
"devDependencies": {
"@angular/compiler-cli": "^6.0.0",
"@angular-devkit/build-ng-packagr": "~0.6.0",
"@angular-devkit/build-angular": "~0.6.0",
"ng-packagr": "^3.0.0-rc.2",
"tsickle": ">=0.25.5",
"tslib": "^1.7.1",
"typescript": "2.7.2",
"@angular/cli": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/router": "^6.0.0",
"@ngrx/effects": "^6.0.0-beta.1",
"@ngrx/store": "^6.0.0-beta.1",
"@ngrx/store-devtools": "^6.0.0-beta.1",
"@types/jasmine": "^2.6.3",
"@types/node": "^8.0.50",
"codelyzer": "^4.3.0",
"copyfiles": "^1.2.0",
"core-js": "^2.5.1",
"cypress": "^1.0.3",
"gh-pages": "0.12.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"json-stable-stringify": "^1.0.1",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"lodash": "^4.17.4",
"protractor": "~5.1.0",
"redux-query": "^2.1.0",
"rimraf": "^2.6.2",
"rxjs": "^6.1.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"zone.js": "0.8.26"
}
}