-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 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
{
"name": "arkstack",
"type": "module",
"version": "0.1.1",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run tests/integration",
"build:packages": "pnpm -r --filter \"@arkstack/*\" build",
"version:packages": "pnpm -r --filter \"@arkstack/*\" version:patch && git add . && git commit -m \"chore: bump package versions\"",
"publish:packages": "pnpm version:packages && pnpm -r --filter \"@arkstack/*\" publish --access public",
"dev": "tsdown --silent",
"build": "NODE_ENV=production pnpm -r --filter \"@arkstack/*\" --filter \"h3\" --filter \"express\" build",
"cmd": "tsx src/core/commands/index.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^7.5.1",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@types/react": "^18.3.28",
"@vitest/coverage-v8": "3.2.4",
"arkormx": "^1.3.2",
"dotenv": "^17.3.1",
"escalade": "^3.2.0",
"eslint": "^10.0.2",
"glob": "^13.0.6",
"prisma": "^7.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"source-map-support": "^0.5.21",
"tsconfig-paths": "^4.2.0",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite-tsconfig-paths": "^5.1.4",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"glob": "^13.0.6"
}
}
}