generated from foundersandcoders/database-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "ai-art-gallery",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "DB_FILE=test.sqlite node --test",
"start": "node src/index.js --max-old-space-size=200",
"lint": "eslint .",
"dev": "DB_FILE='db.sqlite' nodemon src/index.js",
"reset": "rm db.sqlite && DB_FILE=db.sqlite node src/database/seed.js",
"seed": "DB_FILE=db.sqlite node src/database/seed.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.73.0",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^8.7.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"eslint": "^8.51.0",
"eslint-config-kentcdodds": "^20.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"volta": {
"node": "18.16.0"
}
}