-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.74 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
{
"name": "@mirajs/root",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"changeset": "changeset",
"build": "turbo run build",
"dev": "turbo run dev --parallel --no-cache",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@changesets/cli": "^2.22.0",
"@rollup/plugin-commonjs": "18.1.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@rollup/plugin-replace": "3.0.1",
"@rollup/plugin-typescript": "8.3.0",
"@tsconfig/node12": "1.0.7",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"eslint": "8.6.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.7",
"lint-staged": "12.1.6",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"rollup": "2.40.0",
"shx": "0.3.4",
"simple-git-hooks": "2.7.0",
"ts-jest": "27.1.3",
"tslib": "2.4.0",
"turbo": "1.1.6",
"typescript": "4.4.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.6"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "17 || 18",
"react-dom": "17 || 18"
},
"ignoreMissing": [
"@babel/core",
"eslint",
"rollup",
"tslib",
"typescript"
]
},
"overrides": {}
}
}