-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@fluxby/api",
"version": "1.9.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"migrate:payment-methods": "node ./scripts/migrate-payment-methods.mjs",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fluxby/shared": "*",
"better-sqlite3": "^12.11.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.6.0",
"multer": "^2.2.0",
"papaparse": "^5.5.4",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/multer": "^2.1.0",
"@types/papaparse": "^5.3.15",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"supertest": "^7.1.4",
"tsx": "^4.23.1",
"typescript": "^5.7.2"
}
}