-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.27 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
{
"name": "@w/root",
"private": "true",
"scripts": {
"build": "npm run clean && npm run compile && npm run lint",
"clean": "rimraf --glob '**/*.tsbuildinfo' packages/docs/out packages/docs/.next packages/*/lib **/node_modules/.cache",
"compile": "npm run index && node tsbuild.mjs",
"dev:docs": "NEXT_PUBLIC_BASE_PATH=/superdocs nodemon --exec 'npm run -w @w/docs dev' --watch packages/superdocs/lib",
"docs": "npm run -w @w/docs build",
"index": "npm run --workspaces --if-present index",
"lint": "npm run --workspaces --if-present lint",
"watch:compile": "npm run index && node tsbuild.mjs --watch"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/convert-source-map": "^2.0.0",
"@types/micromatch": "^4.0.2",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^10.3.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
}
}