-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 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": "dd_assistant",
"version": "1.0.0",
"description": "Developer DAO Assistant Bot",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon",
"build": "tsc",
"watch": "tsc -w",
"eslint": "eslint src --ext .ts",
"generate": "npx prisma generate --schema ./src/prisma/schema.prisma",
"generate-graph": "graphql-codegen --config codegen.ts",
"deploy": "rm -rf dist && npm i && npm run generate && npm run build && ((pm2 delete dd-assistant && pm2 start dd.config.js) || pm2 start dd.config.js)"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.11.0",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.186",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/parser": "^5.39.0",
"ascii-table": "^0.0.9",
"cron": "^2.3.0",
"dayjs": "^1.11.7",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-alloy": "^4.7.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"glob": "^8.0.3",
"graphql-request": "^5.0.0",
"lodash": "^4.17.21",
"neverthrow": "^6.0.0",
"node-cache": "^5.1.2",
"nodemon": "^2.0.20",
"pino": "^8.6.1",
"pino-pretty": "^9.1.1",
"prettier": "^2.7.1",
"prettier-plugin-prisma": "^4.10.0",
"prisma": "^4.11.0",
"sprintf-js": "^1.1.2",
"timezones.json": "^1.6.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.14.1",
"@graphql-codegen/typescript": "^2.8.2",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@graphql-codegen/typescript-resolvers": "^2.7.7",
"@types/cron": "^2.0.1"
}
}