forked from YAPP-Github/knowlly-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.98 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
59
60
61
62
63
{
"name": "knowlly",
"version": "0.1.0",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"common-styles": "yarn workspace @common/styles",
"landing": "yarn workspace knowlly-landing",
"webview": "yarn workspace knowlly-webview",
"lint": "eslint ./packages '*.{ts,tsx}'",
"lint:fix": "eslint --fix ./packages '*.{js,jsx,ts,tsx}'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest --watch"
},
"dependencies": {
"knowlly-landing": "workspace:^",
"knowlly-webview": "workspace:^",
"react-is": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-interactions": "^6.5.5",
"@storybook/addon-links": "^6.5.5",
"@storybook/builder-webpack5": "^6.5.5",
"@storybook/manager-webpack5": "^6.5.5",
"@storybook/react": "^6.5.5",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.2.1",
"@types/node": "17.0.31",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^8.2.5",
"eslint": "^8.21.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.5.1",
"msw": "^0.42.3",
"next-intercept-stdout": "^1.0.1",
"prettier": "^2.6.2",
"react-test-renderer": "^18.2.0",
"storybook-addon-state": "^1.0.3",
"typescript": "4.6.4",
"webpack": "^5.73.0"
},
"installConfig": {
"pnp": true
}
}