-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "library-occupancy",
"version": "1.0.0",
"description": "Library Occupancy Counters",
"main": "index.js",
"scripts": {
"fix": "standard --fix",
"test": "NODE_ENV=test jest",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcoletaylor/library-occupancy.git"
},
"keywords": [],
"author": "Pete Taylor <j.cole.taylor@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jcoletaylor/library-occupancy/issues"
},
"homepage": "https://github.com/jcoletaylor/library-occupancy#readme",
"dependencies": {
"aws-sdk": "^2.742.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fetch-timeout": "0.0.2",
"js-yaml": "^3.14.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"node-fetch": "^2.6.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.4",
"standard": "^14.3.4",
"superagent": "^6.0.0",
"supertest": "^4.0.2"
},
"standard": {
"env": [
"jest"
]
}
}