-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.5 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
{
"name": "infobase-monorepo",
"description": "",
"scripts": {
"postinstall": "scripts/dev_scripts/clear_eslint_caches.sh",
"postci": "scripts/dev_scripts/clear_eslint_caches.sh",
"prettier": "prettier --check .",
"prettier:write": "prettier --write --loglevel warn .",
"eslint": "eslint --max-warnings 0 --cache .",
"eslint:fix": "eslint --fix .",
"posteslint:fix": "npm run prettier:write",
"static_analysis": "npm run eslint && npm run prettier && (cd client && npm run type_check)",
"preprod_deploy": "npm run static_analysis",
"prod_deploy": "sh scripts/prod_scripts/prod_deploy.sh",
"prod_rollback": "sh scripts/prod_scripts/prod_rollback.sh",
"infobase_tmux_init": "npm run tmux_env",
"tmux_env": "sh scripts/dev_scripts/tmux_env.sh",
"refresh_pipeline_data": "sh scripts/dev_scripts/refresh_pipeline_data.sh",
"prepare": "husky install",
"tests": "(cd client && npm run tests); (cd server && npm run tests); (cd form_backend && npm run tests)"
},
"authors": [
"Alex Cousineau-Leduc",
"Stephen O'Neil",
"Taewan Kang",
"Stéphane Rancourt"
],
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.14.2",
"@babel/plugin-transform-class-properties": "^7.22.5",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-node": "^11.0.0",
"husky": "^6.0.0",
"jest-test-gen": "^1.0.1",
"prettier": "^2.6"
}
}