-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.83 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.83 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
{
"name": "@tid-lab/covid",
"scripts": {
"test:dev": "cypress open",
"test": "cypress run --headless",
"lint:client": "cd client && eslint src/* ",
"lint:fetch": "cd fetch && eslint src",
"lint:landing": "cd landing && eslint src",
"lint:server": "cd server && eslint src",
"prettier:client": "cd client && prettier src --check",
"prettier:fetch": "cd fetch && prettier src --check",
"prettier:landing": "cd landing && prettier src --check",
"prettier:server": "cd server && prettier src --check",
"lint": "run-s lint:client lint:fetch lint:landing lint:server",
"prettier": "run-s prettier:client prettier:fetch prettier:landing prettier:server",
"prettier:fix": "npx prettier --write .",
"dev": "cross-env DEBUG=core,db,fetch stmux -- [ [ -s 1/4 -t \"Fetch (Compiler)\" \"cd fetch && npm run dev:compile\" .. -s 3/4 -t \"Fetch (Run)\" \"cd fetch && npm run dev:run\" ] : [ -s 1/4 -t \"Server (Compiler)\" \"cd server && npm run dev:compile\" .. -s 3/4 -t \"Server (Run)\" \"cd server && npm run dev:run\" ] : [ -t \"Landing\" \"cd client && npm start\" ] ]",
"dev:client": "stmux --mouse -- [ [ -r -t \"Fetch [Run]\" \"cd fetch && npx cross-env DEBUG=core,db,fetch npm run build && npx cross-env DEBUG=core,db,fetch npm run dev:run\" : -r -t \"Server [Run]\" \"cd server && npx cross-env DEBUG=core,db,api,util npm run build && npx cross-env DEBUG=core,db,api,util npm run dev:run\" ] .. -f -r -t \"Client\" \"cd client && npm start\" ] "
},
"devDependencies": {
"@types/react-router-dom": "^5.3.3",
"cross-env": "^7.0.3",
"cypress": "^9.6.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "2.6.2",
"prettier-eslint": "^15.0.0",
"stmux": "^1.8.4"
}
}