-
Notifications
You must be signed in to change notification settings - Fork 377
/
package.json
44 lines (44 loc) · 1.41 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
{
"name": "mpx-monorepo",
"description": "mpx monorepo",
"private": true,
"scripts": {
"lerna:publish": "lerna publish from-package --yes",
"lint": "eslint --ext .js,.ts,.tsx packages/",
"fix": "eslint --fix --ext .js,.ts,.tsx packages/",
"lint:js": "eslint --ext .js packages/",
"test": "jest",
"release": "npm run lint && npm run test && npx lerna version",
"docs:dev": "vuepress dev docs-vuepress",
"docs:build": "vuepress build docs-vuepress",
"tsc:build": "npm --workspace=./packages/webpack-plugin run build"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.25.3",
"@docsearch/css": "^3.0.0",
"@docsearch/js": "^3.0.0",
"@testing-library/jest-dom": "^4.2.4",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vuepress/plugin-back-to-top": "^1.8.2",
"@vuepress/plugin-pwa": "^1.8.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.0",
"lerna": "^8.1.8",
"typescript": "^4.1.3",
"vuepress": "^1.9.7"
},
"workspaces": [
"packages/*"
]
}