-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "chat-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --inspect=5858 -r ts-node/register ./src/app.ts",
"start:watch": "nodemon",
"watch": "nodemon src",
"build": "tsc -p src",
"prod": "npm run build && node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.4",
"@types/sequelize": "^4.28.9",
"@types/validator": "^13.1.3",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"express": "^4.17.1",
"moment-js": "^1.1.15",
"mysql2": "^2.2.5",
"pug": "^3.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.4.0",
"sequelize-typescript": "^2.0.0",
"socket.io": "^3.0.4"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"devDependencies": {
"nodemon": "^2.0.6",
"ts-node": "^8.10.2",
"typescript": "^4.1.3"
}
}