-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
149 lines (149 loc) · 5.73 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": "aurelia-skeleton-navigation-webpack",
"version": "1.0.0",
"description": "A starter kit for building a standard navigation-style app with Aurelia and webpack.",
"main": "dist/electron.js",
"productName": "Aurelia Electron",
"scripts": {
"test": "cross-env NODE_ENV=test ./node_modules/karma/bin/karma start test/karma.conf.js",
"webdriver:update": "cross-env ./node_modules/.bin/webdriver-manager update",
"webdriver:start": "cross-env ./node_modules/.bin/webdriver-manager start",
"pree2e": "npm run webdriver:update -- --standalone",
"e2e": "concurrently --kill-others \"npm run e2e:start-when-ready\" \"cross-env WEBPACK_PORT=19876 npm start\"",
"e2e:start-when-ready": "wait-on --timeout 20000 http-get://localhost:19876/index.html && npm run e2e:start",
"e2e:start": "cross-env ./node_modules/.bin/protractor test/protractor.conf.js",
"e2e:live": "npm run e2e:start -- --elementExplorer",
"clean": "npm cache clean && rimraf node_modules test/coverage dist",
"clean:dist": "rimraf dist",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:dev": "npm run build:dev -- --watch",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"build": "cross-env NODE_ENV=development npm run build:dev",
"prebuild:dev": "npm run clean:dist",
"build:dev": "cross-env NODE_ENV=development npm run webpack -- --progress --profile",
"prebuild:prod": "npm run clean:dist",
"build:prod": "cross-env NODE_ENV=production npm run webpack -- --progress --profile",
"start": "npm run server:dev",
"server": "npm run server:dev",
"server:dev": "cross-env NODE_ENV=development node ./node_modules/webpack-dev-server/bin/webpack-dev-server --inline --progress --profile --watch",
"server:dev:hmr": "npm run server:dev -- --hot",
"server:prod": "http-server dist --cors",
"webpack": "cross-env ./node_modules/.bin/webpack",
"webpack-dev-server": "cross-env ./node_modules/.bin/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aurelia/skeleton-navigation.git"
},
"keywords": [
"aurelia",
"skeleton",
"navigation",
"webpack"
],
"license": "CC0-1.0",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"contributors": [
{
"name": "Arjen de Blok"
},
{
"name": "Bazyli Brzóska <[email protected]> (https://invent.life)"
}
],
"bugs": {
"url": "https://github.com/aurelia/skeleton-navigation/issues"
},
"homepage": "https://github.com/aurelia/skeleton-navigation#readme",
"aurelia": {
"build": {
"resources": []
}
},
"dependencies": {
"aurelia-bootstrapper-webpack": "^1.0.0",
"aurelia-event-aggregator": "^1.0.0",
"aurelia-fetch-client": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-history-browser": "^1.0.0",
"aurelia-loader-webpack": "^1.0.0",
"aurelia-logging-console": "^1.0.0",
"aurelia-pal-browser": "^1.0.0",
"aurelia-polyfills": "^1.0.0",
"aurelia-route-recognizer": "^1.0.0",
"aurelia-router": "^1.0.2",
"aurelia-templating-binding": "^1.0.0",
"aurelia-templating-resources": "^1.0.0",
"aurelia-templating-router": "^1.0.0",
"bluebird": "^3.4.1",
"bootstrap": "^3.3.7",
"font-awesome": "^4.6.3",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.0",
"jquery-flot": "^0.8.3"
},
"devDependencies": {
"@easy-webpack/config-aurelia": "^2.0.1",
"@easy-webpack/config-babel": "^2.0.2",
"@easy-webpack/config-common-chunks-simple": "^2.0.1",
"@easy-webpack/config-copy-files": "^1.0.0",
"@easy-webpack/config-css": "^2.3.2",
"@easy-webpack/config-env-development": "^2.1.1",
"@easy-webpack/config-env-production": "^2.1.0",
"@easy-webpack/config-external-source-maps": "^2.0.1",
"@easy-webpack/config-fonts-and-images": "^1.2.1",
"@easy-webpack/config-generate-index-html": "^2.0.1",
"@easy-webpack/config-global-bluebird": "^1.2.0",
"@easy-webpack/config-global-jquery": "^1.2.0",
"@easy-webpack/config-global-regenerator": "^1.2.0",
"@easy-webpack/config-html": "^2.0.2",
"@easy-webpack/config-json": "^2.0.2",
"@easy-webpack/config-sass": "1.2.0",
"@easy-webpack/config-source-map-support": "^1.0.0",
"@easy-webpack/config-test-coverage-istanbul": "^2.0.2",
"@easy-webpack/config-typescript": "^2.1.2",
"@easy-webpack/config-uglify": "^2.1.0",
"@easy-webpack/core": "^1.3.2",
"@types/bluebird": "^2.0.29",
"@types/jasmine": "^2.2.30",
"@types/whatwg-fetch": "0.0.27",
"aurelia-tools": "^0.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-es2015-loose-native-modules": "^1.0.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.11.6",
"concurrently": "^2.2.0",
"cross-env": "^2.0.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.4",
"karma-remap-istanbul": "^0.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"protractor": "^4.0.0",
"rimraf": "^2.5.4",
"ts-node": "^1.2.1",
"typescript": "^2.0.0",
"wait-on": "^1.5.2",
"webpack": "2.1.0-beta.22",
"webpack-dev-server": ">=2.1.0-beta.0 || ^2.1.0"
},
"babel": {
"presets": [
"es2015",
"stage-1"
]
}
}