-
Notifications
You must be signed in to change notification settings - Fork 317
/
package.json
46 lines (46 loc) · 1.38 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
43
44
45
46
{
"name": "FastUI",
"private": true,
"type": "module",
"workspaces": [
"src/*"
],
"scripts": {
"dev": "npm run --workspace=@pydantic/fastui-prebuilt dev",
"build": "npm run --workspaces prepublishOnly",
"typecheck": "npm run --workspaces typecheck",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier --write",
"format": "npm run prettier -- . && npm run lint-fix",
"generate-json-schema": "./src/python-fastui/tests/react-fastui-json-schema.sh"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 119,
"bracketSpacing": true
},
"devDependencies": {
"@types/node": "^20.9.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"json-schema-to-typescript": "^13.1.1",
"typescript": "^5.0.2"
},
"dependencies": {
"prettier": "^3.2.5",
"typedoc": "^0.25.13"
}
}