-
-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.64 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"version": "0.0.0",
"license": "ISC",
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"format": "prettier --write '{packages,examples,test-site}/**/*.{ts,tsx}'",
"format-check": "prettier --check '{packages,examples,test-site}/**/*.{ts,tsx}'",
"lint": "./scripts/lint.sh",
"lint:fix": "eslint --config eslint.config.mts 'packages/**/*.{ts,tsx}' --fix",
"typecheck": "tsc --noEmit --project packages/web/tsconfig.json && tsc --noEmit --project packages/react/tsconfig.json && tsc --noEmit --project test-site/tsconfig.json",
"build-test-site": "./test-site/build.sh",
"serve-test-site": "http-server ./test-site/dist",
"dev": "./scripts/dev.sh",
"release-all": "npm run release --workspaces --if-present"
},
"private": true,
"devDependencies": {
"@eslint/js": "^9.38.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/mocha": "^10.0.10",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@web/dev-server-esbuild": "^1.0.4",
"@web/test-runner": "^0.20.2",
"esbuild": "^0.17.10",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"http-server": "^14.1.1",
"jiti": "^2.6.1",
"live-server": "^1.2.2",
"nodemon": "^3.0.2",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript-eslint": "^8.46.2"
},
"workspaces": [
"packages/web",
"packages/react"
],
"dependencies": {
"typescript": "^5.2.2"
}
}