-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "routemaker",
"version": "1.0.0",
"scripts": {
"lint": "eslint **/*.js --ignore-pattern node_modules/",
"prepare": "npx husky install"
},
"lint-staged": {
"*.{js,jsx,vue,html,css,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{yml,json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nandium/RouteMaker.git"
},
"author": "yarkhinephyo",
"license": "ISC",
"bugs": {
"url": "https://github.com/nandium/RouteMaker/issues"
},
"homepage": "https://github.com/nandium/RouteMaker#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/cli-plugin-e2e-cypress": "^4.5.12",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.9.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
}
}