-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
45
46
{
"name": "art-vandelay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "DB_FILE=db.sqlite next dev --turbo",
"build": "DB_FILE=db.sqlite next build",
"start": "DB_FILE=db.sqlite next start",
"seed": "DB_FILE=db.sqlite node app/_lib/database/seed.js",
"seed fly": "DB_FILE=/data/db.sqlite node app/_lib/database/seed.js",
"test": "jest --watch",
"test:e2e": "DB_FILE=db.sqlite playwright test",
"lint": "next lint",
"prepare": "husky install",
"bat": "DB_FILE=db.sqlite start-server-and-test start http://localhost:3000 test:e2e"
},
"dependencies": {
"better-sqlite3": "^9.0.0",
"next": "13.5.6",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.11.0",
"sharp": "^0.32.6"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@playwright/test": "^1.39.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.0.3",
"start-server-and-test": "^2.0.1",
"tailwindcss": "^3"
},
"husky": {
"hooks": {
"pre-commit": "lint"
}
}
}