-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.53 KB
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": "text_based_dnd_typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .tsx,.ts src/",
"build": "rimraf dist && npx tsc",
"predev": "npm run build",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\"",
"raw": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tichero/text_based_DnD_typeScript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tichero/text_based_DnD_typeScript/issues"
},
"homepage": "https://github.com/tichero/text_based_DnD_typeScript#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"rimraf": "^4.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@grammyjs/conversations": "^1.1.0",
"dotenv": "^16.0.3",
"grammy": "^1.13.1",
"install": "^0.13.0"
}
}