-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "encore",
"version": "1.0.0",
"description": "Encore - A JSON Schema powered No Code API Builder",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,md}\"",
"swagger": "node swagger/swagger.js"
},
"keywords": [
"nocode"
],
"author": "Avishrant Sharma",
"license": "GPL-3.0",
"dependencies": {
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"prettier": "2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/AvishrantsSh/NoCode-Backend.git"
}
}