forked from ElMassimo/vite_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1007 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
42
{
"name": "vite_ruby_monorepo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"docs": "npm -C docs run dev",
"docs:search": "npm -C docs run search",
"release": "node scripts/release.cjs",
"lint": "lint-staged",
"postinstall": "husky install",
"changelog": "node scripts/changelog.cjs"
},
"devDependencies": {
"@mussi/eslint-config": "^0.5.1",
"@types/node": "^18",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
"eslint": "^7.32.0",
"execa": "^5.1.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"minimist": "^1.2.6",
"semver": "^7.3.7",
"typescript": "^4.7.4"
},
"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"
}