-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:ts": "tsc -p tsconfig.json",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"start": "node ./dist/index.js",
"dev:start": "fastify start --options --ignore-watch=.db$ -w -l info -P dist/index.js",
"watch:ts": "tsc -w",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.4.0",
"@fastify/cookie": "^8.2.0",
"@fastify/cors": "^8.1.0",
"@fastify/session": "^10.0.0",
"@prisma/client": "^4.3.1",
"@quixo3/prisma-session-store": "^3.1.9",
"@types/crypto-js": "^4.1.1",
"axios": "^0.27.2",
"better-sqlite3-session-store": "^0.1.0",
"crypto-js": "^4.1.1",
"discord.js": "^14.4.0",
"dotenv": "^16.0.2",
"env-var": "^7.3.0",
"express-session": "^1.17.3",
"fastify": "^4.5.3",
"fastify-cookie": "^5.7.0",
"prisma": "^4.3.1"
},
"devDependencies": {
"@types/node": "^18.7.18",
"concurrently": "^7.0.0",
"fastify-tsconfig": "^1.0.1",
"typescript": "^4.8.3"
}
}