-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 989 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
{
"name": "recroom",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:server": "DB_FILE=db.test.sqlite node ./test/server.test.js",
"dev": "DB_FILE=db.sqlite nodemon ./src/server/index.js",
"seed": "DB_FILE=db.sqlite node ./src/database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac27/recRoom.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac27/recRoom/issues"
},
"homepage": "https://github.com/fac27/recRoom#readme",
"volta": {
"node": "18.16.0"
},
"dependencies": {
"better-sqlite3": "^8.4.0",
"chalk": "^5.2.0",
"express": "^4.18.2",
"nodemon": "^2.0.22",
"volta": "^0.0.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.2.7",
"eslint": "^8.41.0",
"eslint-config-kentcdodds": "^20.5.0"
}
}