-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
{
"name": "ranter",
"version": "1.0.0",
"description": "Ranter Backend",
"repository": "git@github.com:ranterdev/ranter.git",
"license": "AGPL-3.0",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "nodemon -V -e ts,graphql -w ./src -x yarn run start",
"start": "yarn build && node lib/servers/gql-main.js | pino-pretty -c -l",
"build": "tsc --skipLibCheck && tscpaths -p tsconfig.json -s ./src -o ./lib",
"eslint-check": "eslint \"{src,test}/**/*.ts\"",
"eslint-fix": "eslint \"{src,test}/**/*.ts\" --fix",
"tsc-check": "tsc --noEmit && tsc --noEmit --skipLibCheck",
"prepare": "husky install",
"migrate": ". ./.envrc && npx prisma migrate deploy"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"apollo-server-core": "^3.12.1",
"apollo-server-express": "^3.12.1",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"graphql": "^15.3.0",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"pino": "^8.16.1",
"pino-http": "^8.5.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": ">=6",
"lint-staged": ">=10",
"nodemon": "^3.0.1",
"pino-pretty": "^10.2.3",
"prettier": "^3.0.3",
"prisma": "^5.5.2",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsconfig.json": "^1.0.11",
"tscpaths": "^0.0.9",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}