-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "projbackend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon",
"start": "node ./dist/server/app.js",
"build": "tsc -p tsconfig.prod.json",
"test": "NODE_ENV=test && env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts' --timeout 10000 --exit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cloudinary": "^1.26.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-jwt": "5.3.1",
"express-validator": "^6.11.1",
"formidable": "^1.2.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.12",
"razorpay": "^2.0.6",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/compression": "^1.7.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/express-jwt": "^6.0.1",
"@types/formidable": "^1.2.2",
"@types/jsonwebtoken": "^8.5.2",
"@types/mocha": "^8.2.2",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}