forked from liberuum/ql-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.54 KB
/
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
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
{
"name": "ecosystem-dashboard-ql-server",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node ./build/index.js",
"build": "tsc -p ./config/tsconfig.json && npm run migrate:latest",
"dev": "tsc-watch --noClear -p ./config/tsconfig.json --onSuccess \"node ./build/index.js\"",
"migrate:status": "knex --migrations-directory=./migrations/new --migrations-table-name=knex_migrations_new migrate:status",
"migrate:latest": "knex --migrations-directory=./migrations/new --migrations-table-name=knex_migrations_new migrate:latest",
"migrate:up": "knex --migrations-directory=./migrations/new --migrations-table-name=knex_migrations_new migrate:up",
"migrate:down": "knex --migrations-directory=./migrations/new --migrations-table-name=knex_migrations_new migrate:down",
"test": "jest -c ./jest.config.js",
"test:watch": "jest -c ./jest.config.js --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^8.3.3",
"apollo-server-core": "^3.13.0",
"apollo-server-express": "^3.13.0",
"apollo-server-plugin-response-cache": "^3.7.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"dataloader": "^2.2.2",
"datasource-sql": "^2.0.1",
"date-fns": "^2.30.0",
"dotenv": "^16.0.0",
"express": "^4.18.3",
"express-jwt": "^8.4.1",
"graphql": "^16.3.0",
"graphql-scalars": "^1.17.0",
"json-stringify-deterministic": "^1.0.8",
"jsonwebtoken": "^8.5.1",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"pg": "^8.9.0",
"pino": "^8.19.0",
"pino-http": "^9.0.0",
"pino-pretty": "^10.3.1",
"redis": "^4.6.13",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.3",
"@types/express": "4.17.14",
"@types/express-jwt": "^7.4.2",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.199",
"@types/node": "^20.7.0",
"@types/pg": "^8.10.3",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"nodemon": "^2.0.16",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.4.2",
"xlsx": "^0.18.5"
}
}