-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"private": true,
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint --ext .ts,.tsx,.js,.mjs packages",
"test": "lerna run test --",
"codecov": "rimraf packages/**/coverage && yarn test --coverage",
"build": "rimraf packages/**/dist && lerna run build",
"prepare": "husky install",
"prepublishOnly": "node script/readme.mjs -c && yarn build && yarn test",
"postpublish": "node script/readme.mjs -r",
"version1": "lerna version",
"publish1": "lerna publish from-package"
},
"engines": {
"node": ">= 16"
},
"workspaces": [
"packages/*"
],
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
},
"eslintConfig": {
"env": {
"jest": true,
"browser": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"ignorePatterns": [
"dist",
"jest.config.js"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-extra-semi": "off"
}
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^29.2.5",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"esbuild": "^0.17.19",
"eslint": "^8.15.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^6.4.0",
"lint-staged": "^13.0.3",
"prettier": "^2.8.5",
"rollup": "^2.60.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.0.1",
"ts-jest": "^29.1.0",
"tslib": "^2.3.1",
"typescript": "^5.0.4"
}
}