-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
149 lines (149 loc) · 5.93 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "52North.github.io",
"version": "1.0.0",
"description": "Organization github page for 52North",
"author": "Jan Schulte <[email protected]>",
"homepage": "https://github.com/52north/52North.github.io",
"license": "Apache-2.0",
"scripts": {
"build:aot:prod": "npm run clean:dist && npm run clean:aot && npm run ngc && webpack --config config/webpack.prod.js --progress --profile --bail",
"build:aot": "npm run build:aot:prod",
"build:dev": "npm run clean:dist && webpack --config config/webpack.dev.js --progress --profile",
"build:docker": "npm run build:prod && docker build -t angular2-webpack-start:latest .",
"build:prod": "npm run clean:dist && webpack --config config/webpack.prod.js --progress --profile --bail",
"build": "npm run build:dev",
"ci:aot": "npm run lint && npm run test && npm run build:aot && npm run e2e",
"ci:jit": "npm run lint && npm run test && npm run build:prod && npm run e2e",
"ci:nobuild": "npm run lint && npm test && npm run e2e",
"ci:testall": "npm run lint && npm run test && npm run build:prod && npm run e2e && npm run build:aot && npm run e2e",
"ci": "npm run ci:testall",
"clean:aot": "npm run rimraf -- compiled",
"clean:dist": "npm run rimraf -- dist",
"clean:install": "npm set progress=false && npm install",
"clean:start": "npm start",
"clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist compiled",
"create-github-data": "node config/fetchData.js",
"docker": "docker",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"e2e:live": "npm run e2e -- --elementExplorer",
"e2e": "npm-run-all -p -r server:prod:ci e2e:only",
"e2e:only": "npm run protractor",
"github-deploy:dev": "webpack --config config/webpack.github-deploy.js --progress --profile --env.githubDev",
"github-deploy:prod": "webpack --config config/webpack.github-deploy.js --progress --profile --env.githubProd",
"github-deploy": "npm run github-deploy:dev",
"ngc": "./node_modules/.bin/ngc -p tsconfig.webpack.json",
"postversion": "git push && git push --tags",
"prebuild:dev": "npm run clean:dist",
"prebuild:prod": "npm run clean:dist",
"preclean:install": "npm run clean",
"preclean:start": "npm run clean",
"pree2e": "npm run webdriver:update -- --standalone",
"preversion": "npm test",
"protractor": "protractor",
"rimraf": "rimraf",
"server:dev:hmr": "npm run server:dev -- --inline --hot",
"server:dev": "webpack-dev-server --config config/webpack.dev.js --progress --profile --watch --content-base src/",
"server:prod": "http-server dist -c-1 --cors",
"server:prod:ci": "http-server dist -p 3000 -c-1 --cors",
"server": "npm run server:dev",
"start:hmr": "npm run server:dev:hmr",
"start": "npm run server:dev",
"test": "karma start",
"tslint": "tslint 'src/app/**/*.ts'",
"typedoc": "typedoc",
"version": "npm run build",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:dev": "npm run build:dev -- --watch",
"watch:prod": "npm run build:prod -- --watch",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch": "npm run watch:dev",
"webdriver-manager": "webdriver-manager",
"webdriver:start": "npm run webdriver-manager start",
"webdriver:update": "npm run webdriver-manager update",
"webpack-dev-server": "webpack-dev-server",
"webpack": "webpack"
},
"dependencies": {
"@angular/animations": "^5.2.8",
"@angular/cdk": "^5.2.4",
"@angular/common": "^5.2.8",
"@angular/compiler": "^5.2.8",
"@angular/core": "^5.2.8",
"@angular/forms": "^5.2.8",
"@angular/http": "^5.2.8",
"@angular/material": "^5.2.4",
"@angular/platform-browser": "^5.2.8",
"@angular/platform-browser-dynamic": "^5.2.8",
"@angular/router": "^5.2.8",
"@angularclass/conventions-loader": "^1.0.13",
"@angularclass/hmr": "^2.1.3",
"@angularclass/hmr-loader": "~3.0.2",
"assets-webpack-plugin": "^3.9.10",
"core-js": "^2.5.3",
"font-awesome": "^4.7.0",
"hammerjs": "2.0.8",
"http-server": "^0.11.1",
"rxjs": "^5.5.7",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular/compiler-cli": "^5.2.8",
"@types/hammerjs": "^2.0.36",
"@types/jasmine": "^2.8.6",
"@types/node": "^8.0.16",
"@types/protractor": "4.0.0",
"@types/selenium-webdriver": "^3.0.8",
"@types/source-map": "^0.5.7",
"@types/uglify-js": "^2.6.30",
"@types/webpack": "^3.0.5",
"angular-router-loader": "^0.8.5",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.2.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "0.28.4",
"file-loader": "^0.11.2",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.29.0",
"istanbul-instrumenter-loader": "2.0.0",
"json-loader": "^0.5.7",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-coverage": "^0.1.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "^2.0.13",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"protractor": "^5.3.0",
"raw-loader": "0.5.1",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"sass-loader": "^6.0.7",
"script-ext-html-webpack-plugin": "^1.8.8",
"source-map-loader": "^0.2.4",
"to-string-loader": "^1.1.5",
"ts-helpers": "1.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.17.0",
"typedoc": "^0.14.2",
"typescript": "^2.7.2",
"v8-lazy-parse-webpack-plugin": "0.3.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "^4.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/52north/52North.github.io.git"
},
"bugs": {
"url": "https://github.com/52north/52North.github.io/issues"
},
"engines": {
"node": ">= 6",
"npm": ">= 5"
}
}