-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.12 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
{
"name": "kitchenasty",
"version": "0.2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:server": "npm run dev -w packages/server",
"dev:admin": "npm run dev -w packages/admin",
"dev:storefront": "npm run dev -w packages/storefront",
"dev:docs": "npm run dev -w packages/docs",
"dev:mobile": "npm run start -w packages/mobile",
"build": "npm run build -w packages/shared && npm run build -w packages/server && npm run build -w packages/admin && npm run build -w packages/storefront",
"build:docs": "npm run build -w packages/docs",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "npm run test -w packages/shared && npm run test:unit -w packages/server",
"test:integration": "npm run test:integration -w packages/server",
"test:e2e": "npx playwright test"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22.0.0",
"playwright": "^1.58.2",
"prisma": "^5.22.0",
"typescript": "^5.7.0"
},
"dependencies": {
"@prisma/client": "^5.22.0"
}
}