-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 852 Bytes
/
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
{
"name": "simple-socket-io-chat-backend",
"version": "1.0.0",
"main": "./src/index",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev ./src",
"start": "node ./build"
},
"dependencies": {
"@eolme/normalize": "^2.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.3.1",
"typeorm": "^0.2.40"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}