-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
{
"name": "todo-app",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"dev": "webpack --watch --config webpack.config.dev.ts",
"build:dev": "webpack --config webpack.config.dev.ts",
"build": "webpack --config webpack.config.prod.ts",
"watch:build": "nodemon -r dotenv/config build/main.js --watch build",
"lint": "eslint ./src --ext .ts",
"prepare": "husky install",
"clean:dev": "rimraf build",
"clean:prod": "rimraf dist",
"test:integration": "mocha --check-leaks -r tsconfig-paths/register -r ts-node/register tests/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.5",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.3",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@types/webpack": "^5.28.1",
"@types/webpack-node-externals": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.1"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
}
}