forked from aehrc/smart-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.41 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.41 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
{
"name": "smart-forms",
"scripts": {
"lint": "eslint -c eslint.config.mjs .",
"lint-fix": "eslint -c eslint.config.mjs --fix .",
"lint-fix-errors": "eslint -c eslint.config.mjs --fix --quiet .",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"clean-folders": "find . -type d \\( -name \"node_modules\" -o -name \"dist\" -o -name \"lib\" \\) -exec rm -rf {} +",
"build-all-deps-first-run": "npm run build:sdc-assemble && npm run build:sdc-populate && npm run build:sdc-template-extract && npm run build:smart-forms-renderer",
"build:sdc-assemble": "cd packages/sdc-assemble && npm run build",
"build:sdc-populate": "cd packages/sdc-populate && npm run build",
"build:sdc-template-extract": "cd packages/sdc-template-extract && npm run build",
"build:smart-forms-renderer": "cd packages/smart-forms-renderer && npm run build"
},
"workspaces": [
"apps/smart-forms-app",
"packages/*",
"services/*",
"deployment/forms-server/*",
"deployment/ehr-proxy/*",
"documentation"
],
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.44.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0"
}
}