forked from NebulaServices/Dispenser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "dispenser",
"version": "3.0.0",
"description": "Dispenser",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"node": "node --experimental-specifier-resolution=node --no-warnings -r dotenv/config",
"start": "npm run node -- -r source-map-support/register dist/main.js",
"js": "npm run build && npm start",
"ts": "npm run node -- --loader ts-node/esm src/main.ts",
"build": "npm run clean && npx tsc",
"clean": "node -e \"fs.rm('dist',{recursive:true},()=>{});\"",
"deploy": "npm run node -- --loader ts-node/esm src/deployCmds.ts",
"validate": "prisma validate",
"push": "prisma db push"
},
"author": "Joey",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@types/perfy": "^1.1.0",
"inquirer": "^9.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@discordjs/rest": "^1.6.0",
"@prisma/client": "^4.15.0",
"discord.js": "^14.8.0",
"dotenv": "^16.3.0",
"prisma": "^4.15.0"
}
}