-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "otp-data-entry",
"version": "1.0.0",
"description": "Application to allow users to enter data into the Nazareth Open Tourism Platform database",
"main": "index.js",
"scripts": {
"start": "node src/start.js",
"dev": "nodemon src/start.js",
"test": "node tests/test.js | tap-spec"
},
"semistandard": {
"ignore": [
"public/map.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/foundersandcoders/OTP-Data-Entry.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/foundersandcoders/OTP-Data-Entry/issues"
},
"homepage": "https://github.com/foundersandcoders/OTP-Data-Entry#readme",
"dependencies": {
"aws-sdk": "^2.186.0",
"axios": "^0.17.1",
"body-parser": "^1.18.0",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"env2": "^2.2.0",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"jsonwebtoken": "^8.1.0",
"morgan": "^1.9.0",
"query-string": "^5.0.0",
"request": "^2.81.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"nodemon": "^1.17.5",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"supertest": "^3.0.0",
"tachyons": "^4.8.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"pre-commit": [
"test"
]
}