-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.15 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
{
"name": "laser-access",
"version": "0.1.0",
"description": "VHS Laser Access",
"scripts": {
"prepare": "wireit",
"start": "wireit",
"watch": "wireit",
"test": "wireit"
},
"dependencies": {
"bluebird": "^2.9.14",
"body-parser": "^1.12.2",
"cookie-parser": "^1.3.4",
"crypto-js": "^4.2.0",
"debug": "~4.4.0",
"express": "~4.21.2",
"express-session": "^1.10.4",
"jade": "^1.9.2",
"morgan": "^1.5.2",
"mqtt": "^4.3.7",
"onoff": "^6.0.3",
"passport": "^0.7.0",
"passport-github": "^0.1.5",
"passport-google-oauth": "^0.2.0",
"passport-slack": "git+https://github.com/garthomite/passport-slack.git",
"promise": "~6.1.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"socket.io": "^4.8.1",
"superagent": "~10.1.1",
"superagent-promise": "^0.2.0",
"supervisor": "~0.6.0",
"underscore": "^1.8.2",
"wireit": "^0.14.9"
},
"devDependencies": {
"@prettier/plugin-pug": "^3.2.0",
"@tyisi/config-eslint": "^4.0.0",
"@tyisi/config-prettier": "^1.0.1",
"bower": "^1.8.14",
"chai": "^2.1.1",
"chai-as-promised": "^4.3.0",
"eslint": "^9.16.0",
"gulp": "^3.8.11",
"gulp-istanbul": "^0.6.0",
"gulp-jshint": "^1.9.2",
"gulp-mocha": "^10.0.1",
"jshint-stylish": "^1.0.1",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"sinon": "^1.14.0",
"supertest": "^7.0.0",
"supertest-as-promised": "^1.0.0"
},
"jshintConfig": {
"node": true,
"globalstrict": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
},
"author": "Garth Cumming",
"license": "ISC",
"wireit": {
"test": {
"command": "node_modules/.bin/gulp test"
},
"watch": {
"command": "node_modules/.bin/supervisor bin/www",
"service": true
},
"start": {
"command": "node_modules/.bin/supervisor -w app.js bin/www",
"service": true
},
"prepare": {
"dependencies": [
"bower:install"
]
},
"bower:install": {
"command": "bower install"
}
}
}