-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
60
61
62
{
"name": "resourcely",
"version": "0.3.2",
"description": "Centralized resource management",
"bin": {
"cleanup": "./bin/cleanup.mjs"
},
"scripts": {
"build": "tsc && tsc-alias",
"dev": "nodemon -r tsconfig-paths/register src/server.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prebuild": "npm run lint:fix",
"start": "npm run build && node dist/src/server.js",
"test": "mocha --config .mocharc.json",
"test:coverage": "nyc mocha --config .mocharc.json",
"test:watch": "mocha --config .mocharc.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mukeshgurpude/resourcely-backend.git"
},
"author": "@mukeshgurpude",
"license": "MIT",
"bugs": {
"url": "https://github.com/mukeshgurpude/resourcely-backend/issues"
},
"homepage": "https://github.com/mukeshgurpude/resourcely-backend#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"mongodb-memory-server": "^8.3.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"ts-node": "^10.5.0",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"helmet": "^5.0.2",
"is-test-env": "^1.0.2",
"log4js": "^6.4.1",
"mongoose": "^6.2.1",
"multer": "^1.4.4",
"nanoid": "^3.3.1"
}
}