-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "chores_bot_server",
"version": "1.0.0",
"description": "",
"private": true,
"main": "dist/main.js",
"types": "main.d.ts",
"engines": {
"node": "^16"
},
"scripts": {
"lint": "npx eslint --ext .js,.jsx,.ts,.tsx src/",
"test": "cross-env LOCALE=en-US TIMEZONE=America/New_York mocha --delay",
"tsc": "tsc",
"start": "node .",
"build": "npm-run-all lint tsc",
"dev:start": "cross-env DEBUG=true PORT=3000 npm-run-all build start",
"watch:all": "nodemon --watch src -e ts --exec npm run dev:start",
"watch:tests": "cross-env npm_config_loglevel=silent nodemon --watch src -e ts --exec npm run test"
},
"keywords": [],
"author": "Alicia Woitte ([email protected])",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@types/pg": "^8.6.1",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"kill-port": "^1.6.1",
"mocha": "^9.1.3",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@discordjs/builders": "^0.8.2",
"discord.js": "^13.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"pg": "^8.7.1",
"string-similarity": "^4.0.4"
}
}