-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 1.87 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.87 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
{
"name": "healthmint",
"version": "1.0.0",
"description": "Decentralized Health Data Marketplace",
"main": "server/server.js",
"type": "module",
"scripts": {
"start": "node server/server.js",
"client": "cd client && npm start",
"server": "cd server && nodemon --experimental-specifier-resolution=node server.js --ignore client/",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"install-all": "npm install && concurrently \"cd client && npm install\" \"cd server && npm install\"",
"kill-ports": "npx kill-port 3000 5000",
"clean": "rimraf node_modules package-lock.json client/node_modules client/package-lock.json server/node_modules server/package-lock.json",
"build": "cd client && npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"lint-staged": "lint-staged",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"prepare": "husky install",
"postinstall": "cd client && npm install && cd ../server && npm install"
},
"dependencies": {
"dotenv": "^16.5.0",
"web3.storage": "^4.5.5"
},
"devDependencies": {
"concurrently": "^9.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.2.0",
"rimraf": "^5.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"nodemonConfig": {
"ext": "js,json",
"ignore": [
"client/*",
"node_modules/*"
]
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/epw80/healthmint"
},
"keywords": [
"blockchain",
"healthcare",
"ethereum",
"web3",
"decentralized"
],
"author": "",
"license": "ISC"
}