-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "root",
"private": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"lerna": "^7.1.5",
"prettier": "^2.8.7",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm eslint packages/ --resolve-plugins-relative-to .",
"lint:fix": "pnpm lint --fix",
"prettify": "pnpm prettier --write packages/"
},
"pnpm": {
"allowedDeprecatedVersions": {
"@npmcli/move-file": "*",
"stable": "*",
"svgo": "*",
"source-map-resolve": "*",
"rollup-plugin-terser": "*",
"querystring": "*",
"chokidar": "*",
"sourcemap-codec": "*",
"fsevents": "*",
"source-map-url": "*",
"resolve-url": "*",
"urix": "*",
"w3c-hr-time": "*"
}
}
}