forked from hrsf81-grazers/hrsf81-grazers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "event-hud",
"version": "0.0.1",
"description": "Greenfield Project: Communications app for large-scale event coordination",
"author": "Austin Sloane, Christine Wong, David Friedman, Laurent Frazier",
"license": "MIT",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"ng-dev": "webpack -d --watch",
"server-dev": "nodemon --inspect server/server.js",
"build": "webpack",
"start": "webpack && node server/server.js",
"ng-test": "karma start",
"server-test": "mocha"
},
"dependencies": {
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-aria": "^1.6.6",
"angular-material": "^1.1.5",
"angular-messages": "^1.6.6",
"angular-route": "^1.6.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.18.2",
"express": "^4.16.1",
"pg": "^7.3.0",
"webpack": "^3.6.0",
"ws": "^3.2.0"
},
"devDependencies": {
"angular-mocks": "^1.6.6",
"babel-cli": "^6.7.5",
"babel-eslint": "^8.0.1",
"babel-register": "^6.7.2",
"chai": "^4.1.2",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"sinon": "^4.0.1",
"supertest": "^3.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}