-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.28 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.28 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": "safe-skies-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/src/server.js",
"test": "NODE_ENV=test jest --detectOpenHandles --forceExit",
"test:watch": "NODE_ENV=test npm test -- --watch",
"test:coverage": "NODE_ENV=test jest --coverage --forceExit",
"test:e2e": "newman run postman/safe-skies-api.postman_collection.json",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"type-check": "tsc --noEmit",
"format": "biome format . --write",
"prepare": "husky install",
"migrate:create": "ts-node node_modules/.bin/knex migrate:make",
"migrate:up": "ts-node node_modules/.bin/knex migrate:latest",
"migrate:down": "ts-node node_modules/.bin/knex migrate:down",
"build:knexfile": "tsc knexfile.ts --outDir . --esModuleInterop --module commonjs --target ES2020 --skipLibCheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@atproto/api": "^0.14.2",
"@atproto/oauth-client-node": "^0.2.11",
"@supabase/supabase-js": "^2.48.1",
"@types/cookie-parser": "^1.4.8",
"@types/express-session": "^1.18.1",
"async-mutex": "^0.5.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jiti": "^2.4.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemon": "^3.1.9",
"pg": "^8.13.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-rate-limit": "^6.0.2",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/mock-knex": "^0.4.8",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.4",
"@types/node-pg-migrate": "^2.3.1",
"@types/pg": "^8.11.11",
"@types/supertest": "^6.0.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"mock-knex": "^0.4.13",
"node-pg-migrate": "^7.9.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
}
}