-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 678 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 678 Bytes
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
{
"name": "chat-bot-api",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc",
"dev": "nodemon -e ts --exec \"npm run compile\"",
"lint": "eslint 'src/**/**.ts'",
"postinstall": "npm run build",
"start": "node dist/index.js",
"tsc": "./node_modules/typescript/bin/tsc"
},
"dependencies": {
"express": "~4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"nodemon": "^2.0.20",
"typescript": "^4.5.2",
"typescript-eslint-parser": "^22.0.0"
}
}