generated from jpollard-cs/TypeScriptDiscordStarterBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "typescript-express-starter",
"version": "1.0.0",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=16.14.0",
"npm": "*"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"lint:fix": "eslint --fix '**/*.js' '**/*.ts' && prettier --write '**/*.{js,ts,json,md}'"
},
"keywords": [],
"author": "Wiz",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/lusca": "^1.7.1",
"@types/luxon": "^2.0.7",
"@types/node": "^16.11.11",
"@types/ramda": "^0.27.59",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
},
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"lusca": "^1.7.0",
"luxon": "^2.1.1",
"mongoose": "^6.0.12",
"nanoid": "^3.1.30",
"node-fetch": "^2.6.6",
"ramda": "^0.27.1",
"winston": "^3.7.2"
},
"description": ""
}