-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.71 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ngx-gun",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/calistyle/ng-gun.git",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "run-s build:client build:aot build:server",
"build:prod": "run-s build:client:prod build:aot:prod build:server",
"build:staging": "run-s build:client:staging build:aot:staging build:server:staging",
"build:testing": "run-s build:client:testing build:aot:testing build:server:testing",
"build:client": "ng build --app 0",
"build:client:prod": "ng build -prod --build-optimizer --app 0",
"build:client:staging": "ng build --environment=staging --app 0",
"build:client:testing": "ng build --environment=testing --app 0",
"build:aot": "ng build --aot --app 1",
"build:aot:prod": "ng build --aot --app 1",
"build:aot:staging": "ng build --aot --app 1",
"build:aot:testing": "ng build --aot --app 1",
"build:server": "webpack",
"build:server:staging": "webpack",
"build:server:testing": "webpack",
"build:server:prod": "webpack -p",
"build:dist": "ng-packagr -p ng-package.json",
"test": "run-s test:ng test:e2e test:server",
"test:ng": "ng test --watch=false",
"test:e2e": "ng e2e",
"test:ng:watch": "ng test",
"test:server": "npm run build && mocha",
"lint": "eslint --fix . && ng lint --fix .",
"e2e": "ng e2e",
"heroku-postbuild": "npm run build:prod"
},
"main": "./dist/server.js",
"peerDependencies": {
"@angular/core": ">=5.0.0 <6.0.0",
"@angular/router": ">=5.0.0 <6.0.0",
"lodash": "^4.11.1",
"gun": "^0.9.99"
},
"devDependencies": {
"gun": "^0.9.99",
"@angular/animations": "^5.2.9",
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.9",
"@angular/http": "^5.2.9",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/platform-server": "^5.2.9",
"@angular/router": "^5.2.9",
"@ngrx/effects": "^5.2.0",
"@ngrx/entity": "^5.2.0",
"@ngrx/router-store": "^5.2.0",
"@ngrx/store": "^5.2.0",
"@ngrx/store-devtools": "^5.2.0",
"@nguniversal/express-engine": "^5.0.0-beta.5",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.5",
"core-js": "^2.4.1",
"express": "^4.16.2",
"ng-engine": "^3.1.2",
"rxjs": "^5.5.2",
"trailpack-express": "^2.0.6",
"trailpack-proxy-router": "^2.1.1",
"trailpack-repl": "^2.1.0",
"trailpack-router": "^2.0.0",
"trails": "^2.0.0",
"winston": "^2.2",
"zone.js": "^0.8.14",
"@angular/cli": "1.7.3",
"@angular/compiler-cli": "^5.2.9",
"@angular/language-service": "^5.2.9",
"@types/jasmine": "~2.6.2",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.0.47",
"@types/winston": "^2.2.20-alpha",
"codelyzer": "^4.0.1",
"eslint": "^3.0.0",
"eslint-config-trails": "^2.0.0",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"mocha": "^3.0.2",
"ng-packagr": "^2.2.0",
"npm-run-all": "^4.1.2",
"node-sass": "^4.7.2",
"protractor": "~5.2.0",
"supertest": "^3.0.0",
"ts-loader": "^3.1.1",
"ts-node": "~3.3.0",
"tslint": "~5.8.0",
"typescript": "~2.4.2",
"webpack-node-externals": "^1.6.0"
},
"engines": {
"node": ">= 6.0.0 < 7.0.0",
"npm": ">= 3"
},
"eslintConfig": {
"extends": "trails",
"env": {
"mocha": true
},
"rules": {
"nomen": 0
}
}
}