-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
107 lines (107 loc) · 3.41 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
{
"name": "rebirth",
"version": "0.0.1",
"description": "Angular2 blog",
"author": [],
"homepage": "https://git.oschina.net/greengerong/rebirth",
"license": "MIT",
"angular-cli": {},
"scripts": {
"run-parallel": "npm-run-all --parallel",
"ng-jit": "ng serve",
"ng-aot": "ng serve --prod",
"mock": "node ./build/mock-server.js",
"jit": "npm run run-parallel mock ng-jit",
"aot": "npm run run-parallel mock ng-aot",
"pwa": "node ./build/sw-precache.js",
"github": "ng serve --aot --env=github",
"github-pages:push": "ngh --message \"rebirth blog deploy\"",
"github:deploy": "ng build --aot --prod --env=github --base-href=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/rebirth/ && npm run pwa && npm run github-pages:push",
"lint": "tslint \"src/**/*.ts\"",
"lint-fix": "tslint -c tslint.json \"src/**/*.ts\" --fix",
"test": "ng lint && ng test --watch=false --single-run=true --code-coverage",
"protractor": "protractor",
"pree2e": "webdriver-manager update",
"e2e": "protractor",
"typedoc": "typedoc",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"bootstrap-sass": "^3.3.7",
"classlist.js": "^1.1.20150312",
"codemirror": "^5.21.0",
"core-js": "^2.5.1",
"font-awesome": "^4.6.3",
"highlight.js": "^9.6.0",
"ie-shim": "^0.1.0",
"immutable": "^3.8.1",
"lodash": "^4.0.0-rc.1",
"markdown-it": "^8.2.1",
"normalize.css": "^5.0.0",
"rebirth-event-source": "0.0.1",
"rebirth-http": "^0.1.5",
"rebirth-permission": "0.0.8",
"rebirth-storage": "0.0.10",
"rxjs": "^5.4.3",
"ts-helpers": "^1.1.2",
"web-animations-js": "^2.3.1",
"zone.js": "0.8.17"
},
"devDependencies": {
"@angular/cli": "^1.5.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/language-service": "^5.0.0",
"@types/chai": "^3.4.34",
"@types/codemirror": "0.0.38",
"@types/hammerjs": "^2.0.32",
"@types/highlight.js": "^9.1.7",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/lodash": "^4.14.57",
"@types/node": "^7.0.5",
"@types/selenium-webdriver": "^2.53.36",
"@types/source-map": "^0.5.0",
"@types/uglify-js": "^2.0.27",
"@types/webpack": "^3.0.13",
"angular-cli-ghpages": "^0.5.0",
"codelyzer": "~3.2.0",
"file-loader": "^1.1.5",
"glob": "^7.1.1",
"gulp-stubby-server": "^0.2.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-istanbul-threshold": "^1.2.2",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"npm-run-all": "^4.1.1",
"protractor": "~5.1.2",
"stubby": "^4.0.0",
"sw-precache": "^5.2.0",
"ts-node": "~3.3.0",
"tslint": "~5.7.0",
"typedoc": "^0.8.0",
"typescript": ">=2.4.2 <2.5"
},
"repository": {
"type": "git",
"url": "https://git.oschina.net/greengerong/rebirth.git"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
}
}