-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "root",
"private": true,
"scripts": {
"lint": "eslint '**/*.{js,ts}'",
"test": "lerna run test --parallel --ignore create-react-app --ignore ionic",
"prepare": "lerna run prepare --stream",
"docs": "node scripts/generate-docs.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"ejs": "^3.0.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-cyrillic-string": "^1.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^4.2.1",
"lerna": "^8.0.2",
"lerna-update-wizard": "^1.1.2",
"lint-staged": "^10.0.2",
"prettier": "^2.7.1",
"typedoc": "^0.23.16",
"typescript": "^4.8.4"
},
"workspaces": {
"packages": [
"packages/*"
],
"examples": [
"examples/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/abstract-leveldown",
"**/webpack",
"**/webpack-dev-server"
]
},
"version": "2.5.2"
}