-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "-janki-root-",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"prettier-plugin-sort-json": "^0.0.2",
"json-schema-to-typescript": "^10.1.4"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"printWidth": 88,
"jsonRecursiveSort": true
},
"scripts": {
"bootstrap": "jlpm --prefer-offline && lerna bootstrap",
"build:lib": "lerna run --stream --parallel build:lib",
"build:ext": "lerna run --stream --parallel build:ext",
"eslint:fix": "cd js && eslint --cache-location=../build/.eslintcache --ext .js,.ts,.tsx --fix .",
"eslint:check": "cd js && eslint --ext .js,.ts,.tsx .",
"watch": "lerna run --stream --parallel watch"
},
"workspaces": [
"js/*"
]
}