-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
53
{
"name": "indexeddb-tools-project",
"license": "MIT",
"type": "module",
"scripts": {
"eslint": "eslint ./ --fix",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"engines": {
"pm": "yarn@^3.1.1"
},
"dependencies": {
"@types/node": "^17",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"lerna": "^4.0.0",
"merge2": "^1.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.4"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@sweet-milktea/babel-preset-sweet": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"mocha": "^9.1.3"
},
"lint-staged": {
"**/*.{js,jsx,mjs,cjs,ts,tsx}": "eslint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}