-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "P.A.G.I.N.G.",
"version": "1.1.4",
"description": "Pinpointing Activities Given Insight Not Guesses",
"main": "server.js",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"test": "./node_modules/.bin/mocha",
"lint": "./node_modules/.bin/eslint .",
"build": "./node_modules/node-sass/bin/node-sass app/views/assets/scss/custom.scss -o app/views/assets/css",
"prestart": "npm run build",
"start": "node server",
"predev": "npm run build",
"dev": "npm run watch-sass | npm run watch-node",
"watch-sass": "./node_modules/node-sass/bin/node-sass --watch app/views/assets/scss/custom.scss -o app/views/assets/css",
"watch-node": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.doc.ic.ac.uk/lab1617_summer/webapps_29.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google/maps": "^0.3.1",
"angular-filter": "^0.5.16",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"chai": "^4.0.1",
"co": "^4.6.0",
"config": "^1.26.1",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.3",
"express-validator": "^3.2.0",
"geolib": "^2.0.22",
"mongoose": "^4.10.2",
"mongoose-unique-validator": "^1.0.5",
"ngmap": "^1.18.4",
"node-sass": "^4.5.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"should": "^11.2.1",
"sinon": "^2.3.2",
"socket.io": "^2.0.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"husky": "^0.13.4",
"lint-staged": "^3.5.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"request": "^2.81.0",
"supertest": "^3.0.0",
"sinon": "^2.3.2"
}
}