-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "expenses-project",
"version": "0.2.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsc",
"dev": "nodemon",
"start": "NODE_PATH=dist/src/ node dist/src/server.js",
"test": "env $(cat .env.test | grep -v '#' | xargs) ENV=test jest --verbose --colors --coverage --detectOpenHandles --forceExit --runInBand",
"lint": "yarn rome check {src/,test/}/**/*.ts",
"format": "yarn rome format --write --config-path=. {src/,test/}**/*.ts",
"postinstall": "husky install"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/express-validator": "^3.0.0",
"@types/helmet": "^4.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^29.4.0",
"@types/jws": "^3.2.5",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.1",
"@types/pg": "^8.6.6",
"@types/pino": "^7.0.5",
"@types/redis": "^4.0.11",
"@types/reflect-metadata": "^0.1.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"class-transformer": "^0.5.1",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/csv-parse": "^1.2.2",
"bcrypt": "^5.1.0",
"connect-redis": "^7.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csv-parse": "^5.3.8",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-http-context": "^1.2.4",
"express-session": "^1.17.3",
"express-validator": "^6.15.0",
"helmet": "^6.0.1",
"http-status-codes": "^2.2.0",
"husky": "^8.0.3",
"inversify": "^6.0.1",
"jws": "^4.0.0",
"mongoose": "^7.2.2",
"morgan": "^1.10.0",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"pino": "^8.11.0",
"pino-pretty": "^9.4.0",
"redis": "^4.6.6",
"reflect-metadata": "^0.1.13",
"rome": "^12.0.0",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.6.0",
"sequelize-replace-enum-postgres": "^1.6.0",
"sequelize-typescript": "^2.1.5",
"supertest": "^6.3.3",
"tslint": "^6.1.3",
"umzug": "^3.2.1",
"uuid": "^9.0.0"
}
}