-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.36 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.36 KB
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
{
"name": "@a-ui/nx-react",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "yarn nx build @a-ui/react",
"g": "yarn generate",
"generate": "yarn nx g @a-ui/react:component",
"lint": "eslint packages/antwerp-ui/react-components/src/**/*.{tsx,jsx,ts}",
"playground": "yarn nx run documentation-playground:serve:development",
"postinstall": "cd documentation/storybook && yarn install && cd ../..",
"prettier:read": "prettier packages/antwerp-ui/react-components/src/**/*.{tsx,jsx,ts} --check",
"prettier:write": "prettier packages/antwerp-ui/react-components/src/**/*.{tsx,jsx,ts} --write",
"storybook:build": "yarn nx run @a-ui/storybook:build",
"storybook": "yarn nx run @a-ui/storybook:start",
"test": "yarn nx test",
"prepare": "husky install"
},
"dependencies": {
"@date-fns/tz": "^1.4.1",
"@storybook/client-api": "^7.2.1",
"@swc-node/register": "^1.5.5",
"@swc/core": "^1.3.32",
"@types/react-modal": "^3.13.1",
"date-fns": "^4.1.0",
"husky": "^8.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-modal": "^3.16.1",
"react-tooltip": "^5.28.0"
},
"devDependencies": {
"@nrwl/eslint-plugin-nx": "15.8.7",
"@nrwl/js": "15.8.7",
"@nrwl/linter": "15.8.7",
"@nrwl/nx-cloud": "15.2.4",
"@nrwl/react": "15.8.7",
"@nrwl/vite": "15.8.7",
"@nrwl/workspace": "15.8.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.3.0",
"@types/jsdom": "^20.0.1",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "3.1.0",
"@vitest/coverage-c8": "0.25.8",
"@vitest/ui": "0.25.8",
"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.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.3.1",
"jsdom": "^20.0.3",
"nx": "15.8.7",
"prettier": "^2.6.2",
"react-test-renderer": "^19.0.0",
"typescript": "4.9.5",
"vite": "4.2.3",
"vite-plugin-dts": "1.7.3",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-lib-inject-css": "^1.3.0",
"vite-plugin-static-copy": "^0.13.1",
"vite-tsconfig-paths": "4.0.7",
"vitest": "0.25.8"
}
}