forked from ShenaniganDApp/brightid-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "root",
"private": true,
"devDependencies": {
"patch-package": "^6.4.7"
},
"dependencies": {
"@rescript/core": "^1.3.0",
"@rolandpeelen/rewatch": "^1.0.6",
"brightid_sdk": "^1.0.1",
"canvas": "^2.9.0",
"concurrently": "^7.1.0",
"dotenv": "^8.2.0",
"find-up": "^6.3.0",
"rescript": "^11.1.0",
"rescript-discordjs": "^0.3.0",
"uuid": "^8.3.0"
},
"scripts": {
"build": "rewatch build .",
"build:bot":"rewatch build . -f @brightidbot/bot",
"build:rescript": "rescript build",
"watch": "rewatch watch .",
"watch:rescript": "rescript watch",
"clean": "rewatch clean .",
"clean:rescript": "rescript clean",
"bot": "yarn workspace @brightidbot/bot",
"web": "yarn workspace @brightidbot/web",
"utils": "yarn workspace @brightidbot/utils",
"scripts": "yarn workspace @brightidbot/scripts",
"shared": "yarn workspace @brightidbot/shared"
},
"engines":{
"node": ">=20.10.0"
},
"workspaces": [
"apps/*",
"packages/*"
]
}