-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "reaction-timing-game",
"version": "0.0.1",
"description": "タイミング良くリアクションを押すゲーム",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev src/index.ts",
"lint-staged": "lint-staged",
"start": "prisma migrate deploy && node dist/index.js",
"test": "jest --passWithNoTests",
"prisma-setup": "prisma generate"
},
"dependencies": {
"@discordjs/rest": "^1.0.0",
"@prisma/client": "^4.0.0",
"@types/node": "^18.0.6",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.6",
"discord-api-types": "^0.36.2",
"discord.js": "^14.0.2",
"dotenv": "^16.0.1",
"emoji-regex": "^10.1.0",
"npm-run-all": "^4.1.5",
"sqlite3": "github:mapbox/node-sqlite3",
"typescript": "^4.7.4"
},
"engines": {
"node": "18.x"
},
"repository": {
"url": "https://github.com/v-ut-d/reaction-timing-game"
},
"license": "MIT",
"keywords": [
"node",
"discord.js",
"discord"
],
"devDependencies": {
"cross-env": "^7.0.3",
"prisma": "^4.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}