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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"dependencies": {
"express": "4.17.1",
"slonik": "23.8.3",
"socket.io": "4.1.2"
},
"devDependencies": {
"@slonik/migrator": "0.8.3",
"@types/express": "4.17.12",
"@types/node": "15.12.5",
"@types/socket.io": "3.0.2",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"dotenv": "10.0.0",
"eslint": "7.29.0",
"nodemon": "2.0.8",
"ts-node": "10.0.0",
"typescript": "4.3.4"
},
"scripts": {
"start": "node --loader ts-node/esm index.ts",
"dev": "nodemon --ext js,ts,json --exec 'npm run start'",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "node --loader ts-node/esm migrate.ts"
},
"keywords": [],
"author": "",
"license": "ISC"
}
|