-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
53
54
55
56
57
58
59
{
"name": "zrp-challenge",
"version": "1.0.0",
"description": "A heroes API to save the world",
"main": "index.js",
"scripts": {
"build": "npx tsc -p .",
"start": "node build/src/server.js",
"lint": "eslint src --ext .ts --fix",
"migration": "npx sequelize-cli db:migrate",
"seeds": "npx sequelize-cli db:seed:all",
"dev": "npx ts-node-dev src/server.ts",
"test": "NODE_ENV=test && vitest run --coverage",
"pretest": "npx sequelize-cli db:migrate --env test",
"posttest": "npx sequelize-cli db:migrate:undo:all --env test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@vitest/coverage-v8": "^1.0.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"node-schedule": "^2.1.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.35.1",
"socket.io-client": "^4.7.2",
"zod": "^3.22.4",
"vitest": "^1.0.1",
"supertest": "^6.3.3",
"sequelize-cli": "^6.6.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.3",
"@types/node-schedule": "^2.1.5",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}