-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "lunaryapi",
"version": "2.0.0",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc && TS_NODE_BASEURL=./build node -r tsconfig-paths/register .",
"dev:ts": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/index.ts",
"lint": "eslint --fix .",
"start": "TS_NODE_BASEURL=./build node -r tsconfig-paths/register .",
"test": "jest",
"prisma:dev": "prisma migrate dev && prisma generate",
"prisma:fetch": "prisma db pull && prisma generate",
"prisma:format": "prisma format",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:pull": "prisma db pull"
},
"repository": "https://github.com/lunarybot/lunaryapi",
"author": "JVOPINHO",
"license": "AGPL-3.0",
"dependencies": {
"@discordjs/rest": "^1.0.1",
"@prisma/client": "4.2.1",
"@types/express": "^4.17.13",
"apollo-server": "^3.9.0",
"apollo-server-core": "^3.10.1",
"apollo-server-express": "^3.10.1",
"axios": "^0.26.1",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"discord-api-types": "^0.37.3",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"graphql": "15.3.0",
"ioredis": "^5.2.2",
"jsonwebtoken": "^8.5.1",
"ontime": "^0.1.1",
"reflect-metadata": "^0.1.13",
"sydb": "^2.0.1",
"type-graphql": "^1.1.1",
"winston": "^3.8.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/ontime": "^0.0.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-import-helpers": "^1.2.1",
"jest": "^27.5.1",
"prisma": "^4.2.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.6.3"
}
}