forked from vime-js/vime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
{
"name": "vime",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap --no-private",
"bootstrap:all": "lerna bootstrap",
"build": "lerna run --no-private build",
"clean": "lerna run clean",
"core:build": "npm run build --prefix packages/core",
"core:install": "npm install --prefix packages/core",
"docs:install": "npm ci --prefix docs",
"docs:build": "npm run build --prefix docs",
"docs:start": "npm start --prefix docs",
"docs:now": "run-s clean core:install core:build docs:install docs:build",
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .js --ext .ts",
"lint:prettier": "prettier . --check --loglevel warn",
"format": "run-s format:*",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- --write",
"nuke": "lerna clean",
"prepare": "husky install",
"start": "npm run serve",
"serve": "",
"release": "lerna publish",
"release:ci": "lerna publish --yes"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.2.2",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,md,json}": "prettier --write"
}
}