-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"name": "graphql",
"version": "1.0.0",
"main": "index.js",
"author": "roxyzc",
"license": "MIT",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register ./src/index.ts",
"start": "node ./dist/index.js",
"build": "rm -rf ./dist && rm -f tsconfig.tsbuildinfo && tsc && tsc-alias -p tsconfig.json",
"format": "prettier -w .",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext js",
"test": "jest --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick --staged ng lint ng tes"
}
},
"dependencies": {
"@apollo/server": "^4.6.0",
"@graphql-tools/graphql-file-loader": "^7.5.16",
"@graphql-tools/load": "^7.8.13",
"@prisma/client": "^4.12.0",
"@types/node": "^18.15.11",
"async-exit-hook": "^2.0.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"hashids": "^2.2.11",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.1",
"prisma": "^4.13.0",
"typescript": "*"
},
"devDependencies": {
"@types/async-exit-hook": "^2.0.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.0",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0"
}
}