-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.76 KB
/
package.json
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
{
"name": "haitihospital",
"version": "1.0.0",
"description": "This is a web application made for Hope Health Action (HHA) with the goal to digitize its data collection process at field hospitals. The project uses the MERN stack and is based on a [boiler plate](https://github.com/nemanjam/mern-boilerplate).",
"main": "index.js",
"scripts": {
"setup": "(npm install --prefix common && npm run build --prefix common) && (npm install --prefix client & npm install --prefix server)",
"reinstall-common": "npm run build --prefix common && ((npm uninstall @hha/common --prefix client && npm install ./common --prefix client) & (npm uninstall @hha/common --prefix server && npm install ./common --prefix server))",
"build": "npm run reinstall-common && npm run build --prefix client && npm run build --prefix server",
"test": "npm run test --prefix client; npm run test --prefix server; npm run test --prefix common",
"client": "npm start --prefix client",
"server": "npm start --prefix server",
"dev": "npm run server & npm run client",
"e2e": "cypress open",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"precommit": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://csil-git1.cs.surrey.sfu.ca/415-hhahaiti/haitihospital.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/exceljs": "^1.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.1",
"prettier": "^3.2.5"
},
"dependencies": {
"@types/react-table": "^7.7.19"
}
}