-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "adventure-bot",
"version": "1.0.0",
"description": "Slay a monster! Stab your friends! Adventure bot!",
"main": "index.js",
"private": true,
"scripts": {
"build": "lerna run --parallel build",
"start": "lerna run --parallel start",
"dev": "lerna run --parallel dev",
"clean": "yarn workspaces run clean && rimraf node_modules",
"game": "yarn workspace @adventure-bot/game",
"web": "yarn workspace @adventure-bot/web",
"lint": "yarn workspaces run lint",
"lint-and-fix": "eslint . --ext .ts --fix",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"postinstall": "yarn patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adventure-Bot/adventure-bot.git"
},
"keywords": [
"discord",
"typescript",
"bot"
],
"author": "Brian Gates ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/Adventure-Bot/adventure-bot/issues"
},
"homepage": "https://github.com/Adventure-Bot/adventure-bot#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/node": "^14.0.20",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"lerna": "^4.0.0",
"nodemon": "^2.0.4",
"patch-package": "^6.4.7",
"prettier": "2.5.1",
"ts-node": "^8.10.2",
"ts-prune": "^0.10.3",
"tsconfig-paths": "^3.12.0",
"tscpaths": "^0.0.9"
},
"dependencies": {
"@vercel/ncc": "^0.34.0",
"dotenv": "^8.2.0",
"find-yarn-workspace-root": "^2.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}