-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.99 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "gov-design-system-ce",
"version": "1.0.0-20231109.3",
"license": "MIT",
"scripts": {
"build": "nx run-many -t build --exclude=core-angular,core-react,core-vue,docs,storybook",
"rebuild": "npm run build -- --skip-nx-cache -exclude=core-angular,core-react,core-vue,docs,storybook",
"start": "nx run core:build --dev --watch --serve",
"watch": "npm run assets:serve && nx run core:build --watch",
"test": "nx run core:test --spec --e2e",
"test.watch": "nx run core:test --spec --e2e --watchAll",
"lint": "eslint ./packages/core/src --ext ts,tsx",
"lint:css": "stylelint \"packages/core/src/**/*.{css,scss}\" || exit 0",
"lint:css:fix": "prettier --write \"packages/core/src/**/*.{css,scss}\" && stylelint --fix \"packages/core/src/**/*.{css,scss}\"",
"docs": "nx run docs:serve",
"docs:build": "nx run docs:build",
"storybook": "nx run storybook:serve",
"storybook:build": "nx run storybook:build",
"assets:build": "npm run fonts:build && npm run icons:build",
"assets:serve": "npm run fonts:serve && npm run icons:serve",
"fonts:serve": "nx run fonts:serve",
"fonts:build": "nx run fonts:build",
"icons:build": "nx run icons:build",
"icons:serve": "nx run icons:serve"
},
"resolutions": {
"webpack": "4.46.0"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@mdx-js/react": "^3.0.1",
"@nx/eslint-plugin": "18.0.8",
"@nx/jest": "18.0.8",
"@nx/js": "18.0.8",
"@nx/linter": "18.0.8",
"@nx/react": "18.0.8",
"@nx/storybook": "18.0.8",
"@nx/workspace": "18.0.8",
"@nxext/stencil": "^17.2.2",
"@stencil/angular-output-target": "^0.8.4",
"@stencil/core": "4.12.4",
"@stencil/eslint-plugin": "^0.4.0",
"@stencil/postcss": "^2.1.0",
"@stencil/react-output-target": "^0.5.3",
"@stencil/router": "^1.0.1",
"@stencil/sass": "3.0.10",
"@storybook/addon-a11y": "7.6.17",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-interactions": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/addon-mdx-gfm": "^7.6.17",
"@storybook/core-server": "^7.6.17",
"@storybook/html-webpack5": "^7.6.17",
"@superkoders/stylelint-config": "^2.2.0",
"@testing-library/react": "14.2.1",
"@types/jest": "29.5.12",
"@types/node": "20.11.24",
"@types/react": "18.2.61",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@vaadin/router": "^1.7.5",
"@vuepress/plugin-external-link-icon": "^2.0.0-rc.0",
"autoprefixer": "^10.4.18",
"babel-jest": "29.7.0",
"babel-prettier-parser": "^0.10.8",
"copyfiles": "2.4.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"html-webpack-plugin": "^5.6.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lit-html": "^3.1.2",
"mermaid": "^10.8.0",
"nx": "18.0.8",
"prettier": "^3.2.5",
"puppeteer": "^22.3.0",
"stylelint": "^16.2.1",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vitepress": "^1.0.0-rc.44",
"vitepress-plugin-mermaid": "^2.0.16"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@stencil/vue-output-target": "^0.8.7",
"@storybook/blocks": "^7.6.17",
"@zvitek/vitepress-plugin-matomo": "^1.0.1",
"mermaid": "^10.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"stencil-click-outside": "^1.8.0",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"vitepress-plugin-mermaid": "^2.0.16"
},
"volta": {
"node": "16.19.0",
"npm": "8.19.3"
}
}