-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 940 Bytes
/
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
{
"name": "causeway",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"dependencies": {
"@google-cloud/logging": "^11.2.0",
"express": "^4.21.1",
"multer": "^1.4.5-lts.1",
"ses": "^1.9.1",
"zx": "^8.1.9"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"ava": "^6.2.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"nodemon": "^3.1.7"
},
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "ava",
"lint": "eslint ."
},
"ava": {
"files": [
"tests/**/*.js"
]
},
"nodemonConfig": {
"ignore": [
"uploads/*",
"tests/*",
"node_modules/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}