-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 899 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
36
37
{
"dependencies": {
"@apollo/client": "^3.8.4",
"@apollo/server": "^4.9.3",
"@as-integrations/koa": "^1.1.1",
"@koa/cors": "^4.0.0",
"graphql": "^16.8.1",
"knex": "^2.5.1",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1"
},
"name": "nasa",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"knex": "knex --knexfile ./src/db/knexfile.ts",
"start": "npm run build && node ./dist/index.js",
"test": "jest --config jest.config.ts ./jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/koa": "^2.13.9",
"@types/node": "^20.7.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"pg": "^8.11.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}