-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.17 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
{
"root": true,
"private": true,
"name": "root",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"lib:build": "cd packages && cd lib && npm run build",
"lib:publish": "cd packages/lib/dist && npm publish --access public",
"site:start": "npm start --prefix packages/site",
"site:build": "cd packages && cd site && npm run build",
"lint": "cd packages && cd lib && npm run lint"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/postcss-import": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.3",
"typescript": "^4.9.5",
"vite": "^4.1.4"
}
}