-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.83 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
72
{
"name": "control-park-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsx --watch --conditions development --env-file .env src/index.ts",
"start": "node --env-file .env dist/src/index.js",
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"imports": {
"#*": {
"development": "./src/*",
"default": "./dist/src/*"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --check"
],
"*.{json,yml,yaml,md}": [
"prettier --check"
]
},
"engines": {
"node": ">=20"
},
"type": "module",
"keywords": [],
"author": "Control Park Team",
"license": "ISC",
"description": "Backend Node and Express server for the Control Park mobile app.",
"dependencies": {
"@supabase/supabase-js": "^2.98.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"stripe": "^22.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-dist": "^5.32.0",
"swagger-ui-express": "^5.0.1",
"ws": "^8.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node20": "^20.1.9",
"@tsconfig/node22": "^22.0.5",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.3.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"dotenv": "^17.3.1",
"eslint": "^10.0.2",
"eslint-plugin-perfectionist": "^5.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"supabase": "^2.76.15",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}