This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 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
{
"name": "@faasjs/starter",
"private": true,
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "npm run migrate:latest && vite",
"build": "vite build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test:types": "npm run typegen && npm run typecheck",
"ci": "npm run test:types && \"$(dirname $(command -v npm))/node\" ./node_modules/vitest/vitest.mjs run --coverage --silent",
"server": "node server.ts",
"typegen": "node scripts/typegen.mjs",
"migrate:latest": "node src/db/scripts/migration.ts latest",
"migrate:rollback": "node src/db/scripts/migration.ts rollback",
"migrate:status": "node src/db/scripts/migration.ts status",
"migrate:current": "node src/db/scripts/migration.ts current",
"migrate:make": "node src/db/scripts/migration.ts make",
"lint": "biome check . --write"
},
"dependencies": {
"@faasjs/ant-design": "^8.0.0-beta.8",
"@faasjs/core": "^8.0.0-beta.8",
"@faasjs/server": "^8.0.0-beta.8",
"lodash-es": "*",
"pg": "*",
"uuid": "*"
},
"devDependencies": {
"@electric-sql/pglite": "*",
"@faasjs/dev": "^8.0.0-beta.8",
"@faasjs/lint": "^8.0.0-beta.8",
"@testing-library/dom": "*",
"@testing-library/react": "*",
"@types/node": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@vitejs/plugin-react": "*",
"@vitest/coverage-v8": "*",
"jsdom": "*",
"knex-pglite": "*",
"typescript": "*"
}
}