-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "ehr",
"version": "1.0.0",
"description": "ehr using bigchaindb",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "nodemon ./dist/server.js",
"deploy": "node ./dist/server.js",
"compile": "npm run build && npm run deploy",
"dev": "nodemon -e ts --exec \"npm run compile\"",
"lint": "eslint --cache --max-warnings=0 --fix ./**/*.ts",
"format": "prettier --write ./**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejson03/EHR.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ejson03/EHR/issues"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"moment": "^2.29.1",
"mongodb": "^3.6.2",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"pm2": "^4.5.4",
"rule-judgment": "^1.1.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/mongodb": "^3.5.31",
"@types/mongoose": "^5.7.36",
"@types/multer": "^1.4.4",
"@types/node": "^14.14.5",
"@types/node-fetch": "^2.5.7",
"eslint": "^7.12.1",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"prettier": {
"trailingComma": "none",
"printWidth": 120,
"proseWrap": "preserve",
"semi": true,
"singleQuote": true,
"useTabs": false,
"tabWidth": 3,
"arrowParens": "avoid"
}
}