-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
37
38
39
40
41
42
43
44
45
{
"name": "starboard",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "lerna run dev",
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"dev:watch": "mcsb-watch dev",
"build:watch": "mcsb-watch build",
"lint:watch": "mcsb-watch lint",
"test:watch": "mcsb-watch test",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@mcsb/watch": "^1.0.0-alpha1",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.48.0",
"eslint-plugin-vue": "^9.17.0",
"globstar": "^1.0.0",
"lerna": "^7.3.1",
"madge": "^6.1.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsconfig": "*",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"vue-eslint-parser": "^9.3.2"
},
"watcherOptions": {
"logLevel": "DEBUG",
"immediate": true,
"files": [
"src",
"index.ts"
]
}
}