forked from MarkBind/markbind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 792 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "root",
"private": true,
"scripts": {
"build:web": "cd packages/core-web && npm run build",
"csslint": "stylelint **/*.css **/*.vue",
"csslintfix": "stylelint **/*.css **/*.vue --fix",
"lint": "eslint . --ext .js,.vue && npm run csslint",
"lintfix": "eslint . --ext .js,.vue --fix && npm run csslintfix",
"setup": "npm ci && lerna clean --yes && lerna bootstrap --hoist",
"test": "npm run lint && lerna run test --stream",
"updatetest": "lerna run updatetest --stream"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash": "^7.2.0",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"lerna": "^3.22.1"
}
}