-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "js_from_routes_monorepo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "npm -C packages run build",
"docs": "npm -C docs run dev",
"docs:search": "npm -C docs run search",
"dev": "npm -C packages run dev",
"release": "node scripts/release",
"lint": "eslint . --ext .ts,.js",
"postinstall": "husky install",
"changelog": "node scripts/changelog",
"test": "vitest"
},
"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",
"eslint-plugin-jest": "^24.1.5",
"execa": "^5.0.0",
"happy-dom": "7.7.2",
"husky": "^5.1.1",
"lint-staged": "^10.5.4",
"minimist": "^1.2.5",
"semver": "^7.3.4",
"typescript": "^4.0.5",
"vitest": "^0.29.8"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,vue}": [
"eslint --fix"
],
"*.rb": [
"bin/standardrb --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ElMassimo/js_from_routes"
},
"homepage": "https://github.com/ElMassimo/js_from_routes"
}