-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 895 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 895 Bytes
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
{
"name": "random-image-api",
"author": "Alex Wilson <alex@alexwilson.tech>",
"license": "ISC",
"scripts": {
"start": "node main",
"start-dev": "nodemon main -w src",
"test": "ava"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-handlebars": "^7.1.2",
"jsonschema": "^1.4.1",
"morgan": "^1.10.0",
"msgpack-lite": "^0.1.26",
"redis": "^4.6.13",
"type-is": "^1.6.18",
"uuid": "^9.0.1",
"winston": "^3.12.0",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"ava": "^6.1.2",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
},
"ava": {
"failFast": true,
"files": [
"test/*",
"test/middleware/*",
"!test/*_fixtures"
]
},
"volta": {
"node": "20.11.1"
}
}