-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.09 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
{
"name": "the-secret-store-api",
"version": "0.0.1",
"description": "This is the API of The Secret Store",
"main": "build/server.js",
"module": "src/server.js",
"repository": "https://github.com/KrishnaMoorthy12/the-secret-store-api",
"requiredVariables": [
"JWT_AUTH_SECRET",
"JWT_REFRESH_SECRET",
"SMTP_EMAIL",
"SMTP_PASSWORD"
],
"testEnvironment": "node",
"scripts": {
"build": "babel src --out-dir build",
"dev": "nodemon --exec babel-node src/server.js --ignore tests/",
"start": "node build/server.js",
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier -c \"**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose --forceExit --detectOpenHandles --maxWorkers=1",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^4.1.1",
"config": "^3.3.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"joi-oid": "^1.1.2",
"joi-password-complexity": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.1",
"morgan": "^1.10.0",
"nodemailer": "^6.6.3",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/runtime": "^7.14.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/jest": "^26.0.23",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.2",
"jest": "^27.0.6",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"supertest": "^6.1.3"
}
}