-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.26 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
{
"private": true,
"repository": "git@github.com:Recidiviz/public-dashboard.git",
"author": "Recidiviz <team@recidiviz.org>",
"license": "GNU General Public License v3",
"scripts": {
"dev:api": "cd spotlight-api && yarn dev",
"dev:sc": "cd spotlight-client && yarn dev",
"demo": "IS_DEMO=true REACT_APP_API_URL=http://localhost:3001 yarn dev",
"dev": "run-p dev:api dev:sc",
"install:api": "cd spotlight-api && yarn",
"install:sc": "cd spotlight-client && yarn",
"postinstall": "run-p install:*",
"test": "run-p \"test:* -- {@}\" --",
"test:api": "cd spotlight-api && yarn test",
"test:sc": "cd spotlight-client && yarn test",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^7.0.0",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"spotlight-api/**/*.js": "cd spotlight-api && yarn eslint --fix",
"spotlight-client/**/*.{ts,tsx}": [
"cd spotlight-client && bash -c yarn tsc",
"cd spotlight-client && yarn eslint --fix"
],
"spotlight-client/**/*.{js,jsx}": "cd spotlight-client && yarn eslint --fix",
"spotlight-client/**/*.json": "cd spotlight-client && yarn prettier --write"
},
"dependencies": {
"axios": "1.6.0",
"jwks-rsa": "^3.1.0"
}
}