-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "@codepocket/monorepo",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"server",
"cli",
"client",
"schema",
"core/*"
],
"scripts": {
"build": "ultra -r build",
"dev": "ultra -r dev",
"format": "eslint --fix . --ext .ts,.tsx,.json",
"lerna:publish": "yarn build && lerna publish",
"lint": "eslint . --ext .ts,.tsx,.json",
"setting": "yarn && yarn build",
"test": "ultra -r test"
},
"devDependencies": {
"@types/eslint": "^7",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"lerna": "^5.1.6",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"ultra-runner": "^3.10.5"
},
"packageManager": "[email protected]"
}