-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 931 Bytes
/
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
{
"name": "johnmulapi",
"type": "module",
"module": "index.ts",
"scripts": {
"test": "jest",
"minify": "gulp",
"server:prepare": "(cd server && nitropack prepare);",
"server:dev": "(cd server && nitropack dev);",
"server:build": "(cd server && nitropack build);",
"server:preview": "(cd server && node .output/server/index.mjs);",
"www:install": "(cd www && bun install);",
"www:dev": "(cd www && bun dev);",
"www:build": "(cd www && bun build);",
"www:lint": "(cd www && bun link);",
"www:preview": "(cd www && bun preview);"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"bun-types": "latest",
"del": "^7.1.0",
"eslint": "^8.56.0",
"gulp": "^4.0.2",
"gulp-exec": "^5.0.0",
"gulp-json-minify": "^1.2.3",
"gulp-rename": "^2.0.0",
"gulp-tap": "^2.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}