-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "@discord-interactions/discord-interactions",
"version": "0.0.1",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "lerna run build",
"format": "lerna run format",
"lint": "lerna run lint",
"docs": "lerna run docs",
"test": "lerna run test",
"example": "yarn build && lerna run dev --scope=@discord-interactions/example-bot",
"example:worker": "yarn build && lerna run dev --scope=@discord-interactions/example-bot-worker",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.19.0",
"jest": "^28.1.2",
"lerna": "^5.1.8",
"nx": "^14.4.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typedoc": "^0.23.6",
"typedoc-plugin-markdown": "^3.13.3",
"typescript": "^4.5.4"
},
"private": true,
"engines": {
"node": ">=16"
}
}