-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
47
48
49
{
"name": "todos",
"type": "module",
"config": {
"domain": ""
},
"scripts": {
"start": "NODE_ENV=development DB_LOCATION=$npm_package_name.db PORT=3000 conc 'node --watch ./application/server.js | npx pino-pretty -S' 'npx tailwindcss -o ./static/css/app.css --watch'",
"pretest": "npm run build",
"test": "NODE_ENV=development DB_LOCATION=:memory: conc --kill-others-on-fail 'node --test' 'npx playwright test'",
"build": "npx tailwindcss -o ./static/css/app.css --minify",
"repl": "node ./modules/repl.js",
"migrate": "node ./modules/database/migrate.js",
"predevops": "npm run build",
"devops": "node ./deploy/devops.js",
"prepare": "[ -d '.git' ] && husky || echo 'skipping husky'"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"@fastify/flash": "^6.0.0",
"@fastify/formbody": "^8.0.1",
"@fastify/secure-session": "^8.1.0",
"@fastify/static": "^8.0.1",
"better-sqlite3": "^11.7.0",
"edge.js": "^6.2.0",
"fastify": "^5.0.0",
"ky": "^1.7.2",
"pino": "^9.5.0"
},
"imports": {
"#application/*": "./application/*.js",
"#modules/*": "./modules/*.js",
"#root/*": "./*.js",
"#tests/*": "./tests/*.js"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.44.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.14",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.7.5",
"concurrently": "^8.2.2",
"husky": "^9.1.6",
"memfs": "^4.9.2",
"playwright": "^1.44.1",
"zx": "^8.1.9"
}
}