forked from AdamNowotny/BuildReactor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
{
"name": "BuildReactor",
"description": "Developer notifications and dashboard",
"version": "0.13.0",
"homepage": "https://github.com/AdamNowotny/BuildReactor",
"author": {
"name": "Adam Nowotny",
"email": "[email protected]",
"url": "https://profiles.google.com/adam.nowotny"
},
"repository": {
"type": "git",
"url": "git://github.com/AdamNowotny/BuildReactor.git"
},
"bugs": {
"url": "https://github.com/AdamNowotny/BuildReactor/issues"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/AdamNowotny/BuildReactor/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 6.8"
},
"scripts": {
"lint": "node_modules/.bin/eslint src --ext .js --quiet",
"dist": "node_modules/.bin/webpack",
"auto-dist": "node_modules/.bin/webpack --watch",
"test": "npm run lint && npm run karma",
"karma": "node_modules/.bin/karma start ./src/test/karma.conf.js",
"auto-test": "node_modules/.bin/karma start --no-single-run ./src/test/karma.conf.js",
"start": "node_modules/webpack-dev-server/bin/webpack-dev-server.js"
},
"dependencies": {
"angular": "^1.5.8",
"angular-route": "^1.5.8",
"angular-ui-bootstrap": "^2.1.4",
"angular-ui-utils": "^0.1.1",
"bootstrap": "^3.3.7",
"font-awesome": "^4.6.3",
"html5sortable": "^0.3.1",
"jquery": "^2.2.0",
"mout": "^0.11.1",
"rx": "^2.3.4"
},
"devDependencies": {
"angular-mocks": "^1.5.8",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.8.1",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.6.5",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"ngtemplate-loader": "^1.3.1",
"node-sass": "^3.10.1",
"phantomjs-prebuilt": "^2.1.13",
"raw-loader": "^0.5.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-error-notification": "^0.1.6"
}
}