-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "telemetry-platform-backend",
"version": "0.1.0",
"private": true,
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"dev:ts-node": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"lint": "eslint . --ext .ts",
"test": "jest",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.34.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"cookie-parser": "^1.4.6",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.4.2",
"@types/pg": "^8.11.6",
"@types/cookie-parser": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.6.1",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0"
}
}