-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.32 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
{
"name": "todoinversify",
"version": "1.0.0",
"description": "a todo api depicting the use of InversifyJS to build 3 layered clean architecture.",
"main": "index.js",
"scripts": {
"devstart": "ts-node-dev --respawn --transpile-only --no-notify -r tsconfig-paths/register src/bootstrap.ts",
"test": "NODE_ENV=production NODE_CONFIG_ENV=testing mocha --exit -r ts-node/register --project tsconfig.json test/**/*.spec.ts",
"pre-commit": "npm run lint:fix && npm run lint",
"lint": "eslint .",
"lint:md": "remark .",
"lint:fix": "eslint --fix .",
"start": "node dist/server.js"
},
"author": "sparshkumar",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/inversify-devtools": "^1.0.7",
"@types/inversify-express-utils": "^2.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.7.2",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^4.3.8",
"mocha": "^10.0.0",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"sinon": "^14.0.0",
"ts-mocha": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/morgan": "^1.9.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13"
}
}