-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "vuepress-plugin-automenu",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"start:dev": "nodemon",
"start": "npm run build && node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/colors": "^1.2.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": ">=6",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"vuepress-types": "^0.9.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"colors": "^1.4.0",
"execa": "^6.0.0",
"fs-extra": "^10.0.0",
"merge": "^2.1.1"
}
}