-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
34 lines (34 loc) · 977 Bytes
/
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
{
"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,html,jsx}'",
"build-test-site": "./test-site/build.sh",
"serve-test-site": "http-server ./test-site/dist",
"dev": "./scripts/dev.sh",
"publish": "npm run publish --workspaces --if-present"
},
"private": true,
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"esbuild": "^0.17.10",
"http-server": "^14.1.1",
"live-server": "^1.2.2",
"nodemon": "^3.0.2",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"workspaces": [
"packages/web",
"packages/react"
],
"dependencies": {
"typescript": "^5.2.2"
}
}