-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 967 Bytes
/
package.json
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
{
"name": "odin-server",
"version": "0.0.2",
"description": "Odin Server",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/http-proxy": "1.17.5",
"@types/jsonwebtoken": "8.5.0",
"@types/node": "14.14.21",
"tsc-watch": "^4.2.9",
"typescript": "4.1.3"
},
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"cookie-parser": "1.4.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"graphql": "15.4.0",
"http-proxy": "1.18.1",
"jsonwebtoken": "8.5.1",
"postgraphile": "^4.10.0"
},
"private": true,
"scripts": {
"build": "tsc",
"dev": "tsc-watch --onSuccess 'node ./dist/index.js'",
"dev-debug": "DEBUG=postgraphile:postgres tsc-watch --onSuccess 'node ./dist/index.js'",
"start": "node dist/index.js"
},
"type": "module",
"exports": "./dist/index.js",
"engines": {
"node": "~14.15.4"
}
}