-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 KB
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
50
51
52
53
54
55
{
"name": "wonrax-web",
"version": "0.0.0",
"private": true,
"workspaces": [
"web",
"api"
],
"scripts": {
"build": "turbo run build",
"dev": "wireit",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"prisma:push": "npx prisma db push"
},
"wireit": {
"dev": {
"dependencies": [
"./web:dev",
"./api:dev"
]
}
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@faker-js/faker": "^9.4.0",
"@prisma/client": "^7.2.0",
"eslint": "^9.18.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-solid": "^0.14.5",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prisma": "^7.2.0",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"wireit": "^0.14.9"
},
"packageManager": "npm@9.5.0",
"engines": {
"node": ">=22.0.0"
},
"prisma": {
"seed": "ts-node api/prisma/seed.ts"
},
"overrides": {
"@emmetio/css-parser": "^0.4.0"
}
}