-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "@commonknowledge/commons",
"private": true,
"scripts": {
"build": "tsc --build $(find packages | grep 'tsconfig\\..*\\.json$')",
"typecheck": "yarn build --noemit",
"lint": "eslint --fix packages/**/*.ts packages/**/*.tsx",
"clean": "rm -rf packages/*/dist packages/*/api",
"test": "jest",
"storybook": "start-storybook -p 6006 --docs",
"build-storybook": "build-storybook --docs"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"workspaces": [
"packages/*"
],
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@storybook/addon-actions": "^6.0.18",
"@storybook/addon-docs": "^6.0.18",
"@storybook/addon-links": "^6.0.18",
"@storybook/react": "^6.0.18",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@types/jest": "^26.0.4",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-monorepo": "^0.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}