-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pheonix",
"version": "1.0.0",
"description": "RC Tech data server",
"main": "src/index.ts",
"scripts": {
"prebuild": "npx prisma generate",
"build": "tsc",
"start": "npx prisma migrate deploy && node dist/index.js",
"test": "jest --runInBand --detectOpenHandles --testPathIgnorePatterns utils --verbose --forceExit",
"dev": "tsnd --respawn src/index.ts",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "3.3.0",
"apollo-server-express": "^3.5.0",
"aws-sdk": "^2.1028.0",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"google-auth-library": "^7.0.4",
"graphql": "^15.7.2",
"graphql-fields": "^2.0.3",
"graphql-scalars": "1.12.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typegraphql-authchecker": "^0.1.2",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/graphql-fields": "^1.3.4",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^16.11.7",
"@types/nodemailer": "^6.4.1",
"@types/universal-cookie": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"apollo-server-testing": "^2.25.3",
"apollo-server-types": "^3.4.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"graphql-tag": "^2.12.6",
"husky": "^4.3.8",
"jest": "^27.3.1",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"prisma": "3.3.0",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"typegraphql-prisma": "0.16.4",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"npm run lint"
],
"*.{json,md}": [
"prettier --write"
]
}
}