-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.86 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
{
"name": "data-card-experiment",
"version": "0.0.1",
"description": "An experiment creating a Mission Data Card for DCS flights using Aurelia and Foundation.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.js --hot --inline --progress --devtool source-map",
"build": "webpack --config webpack.config.js --progress --profile",
"prod": "webpack -p --config webpack.prod.config.js --progress --devtool source-map",
"test": "karma start",
"webdriver:update": "./node_modules/.bin/webdriver-manager update",
"webdriver:start": "./node_modules/.bin/webdriver-manager start"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:kernelpanicstudios/data-card-experiment.git"
},
"keywords": [
"simulation",
"flight",
"dcs"
],
"author": "Adam Morris <[email protected]> (http://anmorris.org)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kernelpanicstudios/data-card-experiment/issues"
},
"homepage": "https://github.com/kernelpanicstudios/data-card-experiment",
"dependencies": {
"aurelia-bootstrapper-webpack": "^1.0.0-beta.1.0.0",
"aurelia-event-aggregator": "^1.0.0-beta.1.1.1",
"aurelia-fetch-client": "^1.0.0-beta.1.1.0",
"aurelia-framework": "^1.0.0-beta.1.1.3",
"aurelia-history-browser": "^1.0.0-beta.1.1.2",
"aurelia-logging-console": "^1.0.0-beta.1.1.4",
"aurelia-pal-browser": "^1.0.0-beta.1.1.4",
"aurelia-polyfills": "^1.0.0-beta.1.0.0",
"aurelia-router": "^1.0.0-beta.1.1.1",
"aurelia-templating-binding": "^1.0.0-beta.1.1.1",
"aurelia-templating-resources": "^1.0.0-beta.1.1.1",
"aurelia-templating-router": "^1.0.0-beta.1.1.1",
"bluebird": "^3.3.4",
"font-awesome": "^4.5.0",
"foundation-sites": "^6.2.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^2.2.3",
"lodash": "^4.11.1",
"pouchdb": "^5.3.2"
},
"devDependencies": {
"aurelia-tools": "^0.1.18",
"aurelia-webpack-plugin": "^1.0.0-beta.1.0.0",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-1": "^6.5.0",
"browser-sync": "^2.12.5",
"browser-sync-webpack-plugin": "^1.0.1",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.21",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-webpack": "^1.7.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"wallaby-webpack": "0.0.21",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}