-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
{
"name": "membership-system",
"version": "2.2.8",
"description": "Membership System for the South London Makerspace",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/southlondonmakerspace/membership-system.git"
},
"author": "Tom Lynch & Chris Roberts",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/southlondonmakerspace/membership-system/issues"
},
"homepage": "https://github.com/southlondonmakerspace/membership-system#readme",
"dependencies": {
"body-parser": "^1.14.1",
"bunyan": "^1.8.12",
"bunyan-middleware": "^0.8.0",
"bunyan-syslog-unixdgram": "^1.0.2",
"connect-mongodb-session": "^2.2.0",
"cookie-parser": "^1.4.0",
"csurf": "^1.9.0",
"csv-stringify": "^5.3.6",
"escape-string-regexp": "^1.0.5",
"express": "^4.13.3",
"express-flash": "0.0.2",
"express-session": "^1.12.1",
"git-rev": "^0.2.1",
"helmet": "^3.10.0",
"inquirer": "^3.0.6",
"moment": "^2.15.1",
"mongoose": "^5.7.11",
"nodemailer": "^2.3.2",
"notp": "^2.0.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-totp": "0.0.2",
"postcodesio-client": "^0.3.3",
"pug": "^2.0.0-beta11",
"query-string": "^4.3.4",
"request": "^2.70.0",
"thirty-two": "^1.0.2"
},
"scripts": {
"start": "node app | bunyan -c 'this.sensitive == undefined'",
"production": "npm-run-all --parallel start webhook",
"dev": "nodemon app | npx bunyan",
"webhook": "node webhook",
"webhook-dev": "nodemon webhook | npx bunyan",
"first-time": "node tools/first-time/first-time",
"new-user": "node tools/new-user/new-user",
"import": "node tools/import/import",
"watch-css": "catw -c 'lessc -' 'static/less/*.less' -o static/css/style.css -v",
"watch": "npm run watch-css"
},
"devDependencies": {
"catw": "github:unknowndomain/catw",
"less": "^3.10.3",
"nodemon": "^1.19.3",
"npm-run-all": "^4.1.5",
"watchify": "^3.11.1"
},
"engines": {
"node": ">=8.10"
}
}