forked from ElMassimo/vite_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 985 Bytes
/
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
{
"name": "vite_ruby_monorepo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"docs": "npm -C docs run dev",
"docs:search": "npm -C docs run search",
"release": "node scripts/release",
"lint": "lint-staged",
"postinstall": "husky install",
"changelog": "node scripts/changelog"
},
"devDependencies": {
"@mussi/eslint-config": "^0.5.0",
"@types/node": "^14.14.31",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"eslint": "^7.17.0",
"execa": "^5.0.0",
"husky": "^5.1.1",
"lint-staged": "^10.5.4",
"minimist": "^1.2.5",
"semver": "^7.3.4",
"typescript": "^4.0.5"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,vue}": [
"eslint --fix"
],
"*.rb": [
"bin/rubocop -A"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ElMassimo/vite_ruby"
},
"homepage": "https://github.com/ElMassimo/vite_ruby"
}