-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.23 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "veko-framework",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./config": "./src/config/index.js",
"./config/defaults": "./src/config/defaults.js",
"./config/load-config": "./src/config/load-config.js",
"./runtime": "./src/runtime/index.js",
"./runtime/auth": "./src/runtime/auth.js",
"./runtime/errors": "./src/runtime/errors.js",
"./runtime/wrapAction": "./src/runtime/wrapAction.js",
"./runtime/queryBuilder": "./src/runtime/queryBuilder.js",
"./runtime/sugar": "./src/runtime/sugar.js",
"./runtime/validator": "./src/runtime/validator.js",
"./runtime/adapters/sqlite": "./src/runtime/adapters/sqlite.js",
"./runtime/adapters/postgres": "./src/runtime/adapters/postgres.js",
"./runtime/adapters/base": "./src/runtime/adapters/base.js",
"./compiler": "./src/compiler/index.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"pino": "^8.17.2",
"prom-client": "^15.1.0",
"swagger-ui-express": "^5.0.0",
"vm2": "^3.9.19"
},
"devDependencies": {
"@types/node": "^20.10.0",
"autocannon": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"scripts": {
"start": "node src/legacy/compiler-v3.js",
"build": "node src/cli/build.js",
"dev": "tsx src/cli/dev.ts",
"migrate": "node src/cli/migrate.js",
"migrate:test": "NODE_ENV=test node src/cli/migrate.js",
"check": "tsx src/cli/check.ts",
"start:generated": "npm run build && node generated/server.js",
"start:test": "npm run build && NODE_ENV=test DB_FILE=veko.test.db PORT=3001 node generated/server.js",
"test": "npm run check && npm run build",
"test:auth": "node scripts/test-auth.mjs",
"bench": "node test/bench-report.js",
"test:integration": "node test/integration.test.mjs"
},
"bin": {
"veko": "./bin/veko.js"
},
"files": [
"index.js",
"bin",
"src",
"tsconfig.json",
"README.md",
"LICENSE"
]
}