-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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
{
"name": "chakra-ui-deepdive",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "[email protected]:lukasbach/chakra-ui-deepdive.git"
},
"author": "Lukas Bach",
"license": "MIT",
"private": true,
"scripts": {
"start": "lerna run start --parallel --npm-client=yarn",
"start:docs": "lerna run start:docs --parallel --npm-client=yarn",
"build:docs": "lerna run build:docs --parallel --npm-client=yarn",
"storybook": "lerna run storybook --parallel --npm-client=yarn",
"build:storybook": "lerna run build:storybook --parallel --npm-client=yarn",
"build": "lerna run build --npm-client=yarn",
"build:all-targets": "lerna run build:all --npm-client=yarn",
"test": "lerna run test --npm-client=yarn --stream",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"lerna": "^4.0.0",
"move-file-cli": "^3.0.0",
"prettier": "^2.6.0",
"ts-loader": "^8.0.11"
},
"workspaces": [
"packages/*"
]
}