-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 950 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": "@ckpack/midway-plugin-sequelize",
"version": "0.0.5",
"description": "",
"author": "ckvv",
"license": "ISC",
"keywords": [
"midway",
"sequelize"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"release": "standard-version",
"prepare": "npx simple-git-hooks",
"lint": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.1",
"@ckpack/base": "^1.0.3",
"@midwayjs/core": "^3.15.0",
"@sequelize/core": "^7.0.0-alpha.37",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.0",
"standard-version": "^9.5.0",
"typescript": "^5.4.2"
},
"simple-git-hooks": {
"commit-msg": "npx -p @ckpack/base verify-commit",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,tsx,jsx,vue,json}": [
"eslint --fix"
]
}
}