-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 974 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 974 Bytes
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
{
"name": "skip-postgres",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist node_modules",
"format": "prettier --write 'src/**/*.{js,ts}'",
"client": "node --loader ts-node/esm src/client.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "[email protected]",
"devDependencies": {
"@skipruntime/core": "^0.0.16",
"@skipruntime/helpers": "^0.0.16",
"@skipruntime/server": "^0.0.16",
"@types/node": "^22.15.20",
"@types/pg": "^8.15.2",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"type": "module",
"dependencies": {
"@fastify/cors": "^11.0.1",
"@skip-adapter/postgres": "^0.0.16",
"fastify": "^5.4.0",
"pg": "^8.16.0"
}
}