This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@heetch/web-tools",
"version": "0.0.0",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.11 <17.0.0"
},
"scripts": {
"react-forms:build": "nx build react-forms",
"react-forms:storybook": "nx storybook react-forms",
"react-forms:test": "nx test-jest react-forms && test-storybook -c packages/react-forms/.storybook --url=http://localhost:4400",
"react-forms:gen:stories": "nx g @nrwl/react:stories --project react-forms --generateCypressSpecs false",
"react-forms:gen:component": "nx g c --project react-forms --skipTests true --style styled-components --export true"
},
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/preset-typescript": "7.12.13",
"@heetch/flamingo-react": "^5.2.0",
"@nrwl/cli": "15.2.1",
"@nrwl/eslint-plugin-nx": "15.2.1",
"@nrwl/jest": "15.2.1",
"@nrwl/linter": "15.2.1",
"@nrwl/react": "15.2.1",
"@nrwl/storybook": "15.2.1",
"@nrwl/web": "15.2.1",
"@nrwl/workspace": "15.2.1",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "~6.5.9",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/builder-webpack5": "~6.5.9",
"@storybook/core-server": "~6.5.9",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "~6.5.9",
"@storybook/react": "~6.5.9",
"@storybook/test-runner": "^0.7.1",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.4.0",
"@testing-library/react": "13.4.0",
"@types/jest": "28.1.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-is": "17.0.3",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"babel-jest": "28.1.1",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.10.7",
"concurrently": "^7.4.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"http-server": "^14.1.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"nx": "15.2.1",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^5.1.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"url-loader": "^3.0.0",
"wait-on": "^6.0.1"
},
"resolutions": {
"meow": "11.0.0",
"chokidar": "3.5.3",
"globby": "11.1.0",
"trim": "0.0.3"
},
"workspaces": [
"packages/**"
],
"packageManager": "yarn@3.2.3",
"dependencies": {
"core-js": "^3.6.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"regenerator-runtime": "0.13.7",
"tslib": "^2.3.0"
}
}