-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.51 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.51 KB
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
{
"name": "dbinclui-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"engines": {
"node": "16.13.1"
},
"scripts": {
"test": "npx jest --config=jest.config.ts",
"test:watch": "npx jest --watch --config=jest.config.ts",
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"dev:log": "DEBUG=db-inclui:* ts-node-dev -r tsconfig-paths/register src/index.ts",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register dist/src/index.js",
"build": "tsc -p ./tsconfig.build.json",
"lint:check": "npx eslint -c .eslintrc.json ./**/*.{ts,test.ts}",
"lint:fix": "npx eslint -c .eslintrc.json --fix ./**/*.{ts,test.ts}",
"prettier:check": "npx prettier -c ./**/*.{ts,test.ts}",
"prettier:write": "npx prettier -w ./**/*.{ts,test.ts}"
},
"author": "DBInclui",
"license": "ISC",
"homepage": "https://github.com/nickolasL13/dbinclui-backend#readme",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/nickolasL13/dbinclui-backend.git"
},
"dependencies": {
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"cloudinary": "^1.28.1",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.2",
"express-jwt": "^6.1.0",
"express-validator": "^6.14.0",
"mongodb": "^4.2.1",
"mongoose": "^6.1.1",
"multer": "^1.4.4",
"multer-storage-cloudinary": "^4.0.0",
"rest": "^2.0.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.5",
"@jest-mock/express": "^1.4.5",
"@shelf/jest-mongodb": "^2.1.1",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.3",
"@types/jest": "^27.0.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.15",
"@types/rest": "^1.3.31",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supports-color": "^9.2.1",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8"
}
}