-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "backend-new",
"version": "0.0.1",
"description": "GraphQL API",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -rf ./dist",
"tsc": "tsc",
"tsc-alias": "tsc-alias -p tsconfig.json",
"generate": "graphql-codegen",
"compile": "npm run generate && npm run tsc && npm run tsc-alias",
"build": "npm run clean && npm run compile",
"start": "npm run compile && NODE_ENV=development node ./dist/index.js"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"author": "Shashkov Danil <[email protected]> (https://github.com/shashkovdanil)",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.1.1",
"dotenv": "^16.3.1",
"graphql": "^16.7.1",
"graphql-yoga": "^4.0.3",
"jsonwebtoken": "^9.0.1",
"nanoid": "^4.0.2",
"nodemailer": "^6.9.4",
"picocolors": "^1.0.0",
"pm2": "^5.3.0",
"prisma": "^5.1.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.8",
"@types/nodemailer": "^6.4.9",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-perfectionist": "^1.5.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"engines": {
"node": ">= 18.x"
}
}