generated from zeepk/typescript-node-express-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "codey-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev index.ts",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^17.0.15",
"axios": "^0.27.2",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"mongoose": "^6.2.8",
"react-syntax-highlighter": "^15.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0"
},
"engines": {
"node": ">=16.0.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"cacheDirectories": [
"client/node_modules"
]
}