-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "grow-a-tree",
"version": "1.0.0",
"description": "Grow a tree in your Discord server.",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"format": "prettier --write src",
"lint": "eslint src/**/*.ts",
"build": "yarn format & yarn lint && tsc -p tsconfig.json",
"build:docker": "docker build -t grow-a-tree .",
"start": "node dist/index.js",
"dev": "yarn build && yarn start"
},
"author": "ssMMiles",
"license": "MIT",
"dependencies": {
"@types/humanize-duration": "^3.27.1",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.0",
"fastify": "^3.27.4",
"fastify-raw-body": "^3.2.0",
"humanize-duration": "^3.27.1",
"interactions.ts": "^1.0.38",
"mongoose": "^6.3.2",
"node-fetch": "2",
"redis": "^4.1.0"
},
"devDependencies": {
"@types/node": "^14.18.3",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"discord-api-types": "^0.32.1",
"eslint": "^8.12.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}