-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.43 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
50
51
52
{
"name": "types_from_serializers_monorepo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"clean": "rm -rf playground/vanilla/app/frontend/types/serializers",
"migrate": "cd playground/vanilla && bundle install && bin/rails db:prepare",
"gen": "cd playground/vanilla && bundle exec rake types_from_serializers:generate",
"tsc": "npm -C playground/vanilla run tsc",
"release": "node scripts/release",
"lint": "eslint playground/vanilla/app/frontend scripts --ext .ts,.js,.vue",
"postinstall": "husky install",
"changelog": "node scripts/changelog",
"test": "vitest"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/node": "^14.18.21",
"@vue/tsconfig": "^0.1.3",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
"eslint": "^8",
"execa": "^5.1.1",
"happy-dom": "^2.55.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"minimist": "^1.2.6",
"semver": "^7.3.7",
"typescript": "^4.7.4",
"vitest": "^0.18.0"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,vue}": [
"eslint --fix"
],
"*.rb": [
"bin/rubocop -A"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ElMassimo/types_from_serializers"
},
"homepage": "https://github.com/ElMassimo/types_from_serializers",
"pnpm": {
"overrides": {
"eslint-plugin-vue": "9.2.0"
}
}
}