-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 935 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "cd packages/chusho && npm start",
"test": "npm run validate && lerna run --parallel test",
"build:chusho": "cd packages/chusho && npm run build",
"build:docs": "cd packages/docs && npm run build",
"build": "npm run build:chusho && npm run build:docs",
"validate": "eslint . --ignore-path .gitignore --ext .js,.ts,.tsx,.vue",
"format": "npm run validate -- --fix"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"lerna": "^6.5.1",
"prettier": "^2.8.0",
"typescript": "^4.9.5"
}
}