-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 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
{
"name": "savory-api",
"version": "1.0.0",
"main": "build/server.js",
"module": "src/server.js",
"scripts": {
"build": "babel src --out-dir build",
"dev": "nodemon --exec babel-node src/server.js",
"start": "node build/server.js",
"format": "prettier --write \"**/*.{js,mjs}\"",
"format:check": "prettier -c \"**/*.{js,mjs}\"",
"lint": "eslint \"src/**/*.{js,mjs}\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest --watchAll --verbose --detectOpenHandles"
},
"keywords": [
"savory-api",
"savory"
],
"author": "PranavGPR",
"license": "ISC",
"description": "The Node.js REST API for Savory - A food ordering app",
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^2.4.2",
"core-js": "^3.14.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"joi-to-swagger": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"regenerator-runtime": "^0.13.7",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"babel-plugin-module-resolver": "^4.1.0",
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.4"
},
"devDependencies": {
"set-value": ">=4.0.1",
"@types/jest": "^26.0.23",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.27.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"supertest": "^6.1.3",
"ansi-regex": ">=5.0.1",
"swagger-ui-dist": ">=4.1.3",
"tmpl": ">=1.0.5",
"tar": ">=6.1.9"
},
"engines": {
"node": "14.x"
}
}