-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
25 lines (25 loc) · 1.13 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
{
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^7.6.2",
"cookie-parser": "^1.4.6",
"eslint": "^8.25.0",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"scripts": {
"devWindow": "SET DB_FILE=db.sqlite & SET COOKIE_SECRET=abc & nodemon src/index.js",
"seedWindow": "SET DB_FILE=db.sqlite & node src/database/seed.js",
"start": "DB_FILE=db.sqlite COOKIE_SECRET=abc node src/index.js",
"dev": "DB_FILE=db.sqlite COOKIE_SECRET=abc nodemon src/index.js",
"seed": "DB_FILE=db.sqlite node src/database/seed.js",
"test:1": "DB_FILE=test.sqlite COOKIE_SECRET=abc node --no-warnings test/1.test.js",
"test:2": "DB_FILE=test.sqlite COOKIE_SECRET=abc node --no-warnings test/2.test.js",
"test:3": "DB_FILE=test.sqlite COOKIE_SECRET=abc node --no-warnings test/3.test.js",
"test:4": "DB_FILE=test.sqlite COOKIE_SECRET=abc node --no-warnings test/4.test.js",
"test:5": "DB_FILE=test.sqlite COOKIE_SECRET=abc node --no-warnings test/5.test.js",
"test:6": "DB_FILE=test.sqlite COOKIE_SECRET=abc node --no-warnings test/6.test.js"
}
}