-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "relay-backend",
"version": "1.0.0",
"description": "Relay backend application",
"private": true,
"license": "MIT",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon",
"lint": "eslint",
"migrate": "npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:all",
"start": "npm run build && node ./build/index.js"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relay-project/relay-backend"
},
"dependencies": {
"chalk": "^4.1.0",
"dotenv": "^16.0.3",
"joi": "^17.6.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"redis": "^4.5.0",
"scryptwrap": "^2.0.0",
"sequelize": "^6.25.3",
"sequelize-cli": "^6.5.1",
"socket.io": "^4.5.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.3",
"@types/sequelize": "^4.28.14",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
}
}