-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
68 lines (68 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vime",
"version": "5.4.1",
"private": true,
"license": "MIT",
"type": "module",
"volta": {
"node": "16.10.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node .scripts/run-build.js",
"build:all": "pnpm -F \"./packages/**\" build",
"clean": "pnpm -F \"./packages/**\" clean",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"docs:build": "pnpm -F \"./docs\" build",
"docs:dev": "pnpm -F \"./docs\" dev",
"docs:preview": "pnpm -F \"./docs\" serve",
"example": "node .scripts/run-example.js",
"format": "run-s format:*",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- --write",
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx . --ignore-path .gitignore",
"lint:prettier": "prettier . --check --ignore-path .gitignore --loglevel warn",
"preinstall": "node .scripts/preinstall.js",
"postinstall": "npm i --prefix docs",
"prepare": "husky install",
"sandbox": "node .scripts/run-sandbox.js",
"sandbox:create": "node .scripts/sandbox-create.js",
"release": "node .scripts/release.js"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"execa": "^5.1.1",
"husky": "^7.0.2",
"kleur": "^4.1.4",
"lint-staged": "^11.2.2",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"prompts": "^2.4.2",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"typescript": "^4.4.3",
"upath": "^2.0.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,md,json}": "prettier --write"
},
"packageManager": "[email protected]"
}