-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "@w/root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run clean && npm run compile && npm run docs",
"clean": "rimraf --glob '**/*.tsbuildinfo' 'packages/decoders/lib/' packages/docs/.next",
"compile": "npm run --workspaces --if-present compile",
"dev:docs": "nodemon --exec 'npm run -w @w/docs dev' --watch packages/decoders/lib",
"docs": "npm run -w @w/docs build",
"index": "npm run --workspaces --if-present index",
"lint": "npm run --workspaces --if-present lint",
"test": "npm run --workspaces --if-present test",
"watch:compile": "tsc -w -p packages/decoders/tsconfig.json"
},
"devDependencies": {
"@swc/core": "^1.3.51",
"@swc/jest": "^0.2.26",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"nodemon": "^3.0.1",
"prettier": "2.8.7",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
}
}