-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.43 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.43 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
{
"name": "dev-playground",
"version": "1.0.0",
"main": "build/index.js",
"scripts": {
"start": "node build/index.mjs",
"start:local": "NODE_ENV=production node --env-file=./server/.env build/index.mjs",
"dev": "NODE_ENV=development tsx watch server/index.ts",
"dev:inspect": "tsx --inspect --tsconfig ./tsconfig.json ./server",
"build": "npm run build:app",
"build:app": "tsdown --out-dir build server/index.ts && cd client && npm run build",
"build:server": "tsdown --out-dir build server/index.ts",
"install": "cd client && npm install && cd ..",
"preview": "vite preview",
"check": "tsc",
"clean": "rm -rf build && cd client && rm -rf dist",
"clean:full": "rm -rf build node_modules && cd client && rm -rf dist node_modules",
"test:integration": "playwright test",
"test:integration:ui": "playwright test --ui",
"test:integration:headed": "playwright test --headed"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@databricks/appkit": "workspace:*",
"drizzle-orm": "0.45.1",
"reflect-metadata": "0.2.2",
"sequelize": "6.37.7",
"typeorm": "0.3.28"
},
"devDependencies": {
"@playwright/test": "1.58.1",
"@types/node": "20.19.21",
"dotenv": "16.6.1",
"tsdown": "0.20.3",
"tsx": "4.20.6",
"vite": "npm:[email protected]"
},
"overrides": {
"vite": "npm:[email protected]"
}
}