-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.34 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
{
"name": "school-game",
"version": "0.0.1",
"main": "src/index.tsx",
"repository": "-",
"author": "Dominik",
"license": "MIT",
"private": true,
"scripts": {
"dev": "yarn start:app",
"start": "concurrently \"yarn start:app\" \"yarn start:storybook\"",
"start:app": "vite",
"start:storybook": "start-storybook -p 6006",
"build": "concurrently \"yarn build:app\" \"yarn build:storybook\"",
"build:app": "vite build",
"build:storybook": "build-storybook",
"serve": "vite preview",
"lint": "concurrently \"yarn lint:js\" \"yarn lint:css\"",
"lint:js": "cross-env eslint --config ./.eslintrc ./src/ts/**/*.{tsx,ts}",
"lint:css": "cross-env stylelint --mw 0 --config ./stylelint.config.js ./src/**/*.css",
"hygen": "./node_modules/.bin/hygen",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"postinstall": "husky install"
},
"dependencies": {
"@loadable/component": "^5.15.2",
"date-fns": "^2.28.0",
"i18next": "^21.6.3",
"i18next-browser-languagedetector": "^6.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.1",
"react-router-dom": "^6.3.0",
"rxjs": "^7.5.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@emotion/react": "^11.9.0",
"@mui/material": "^5.8.0",
"@pragmatics/stylelint-config-order": "^2.2.3",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.19",
"@types/loadable__component": "^5.13.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router": "^5.1.17",
"@types/react-test-renderer": "^17.0.1",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitest/ui": "^0.7.4",
"@whitespace/storybook-addon-html": "^5.0.0",
"autoprefixer": "^10.4.7",
"clsx": "^1.1.1",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"happy-dom": "^2.49.0",
"husky": "^7.0.4",
"hygen": "^6.1.0",
"postcss": "^8.4.5",
"postcss-custom-media": "^8.0.0",
"postcss-preset-env": "^7.1.0",
"postcss-pxtorem": "^6.0.0",
"postcss-reporter": "^7.0.4",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"storybook-addon-performance": "^0.16.1",
"storybook-addon-pseudo-states": "^1.7.0",
"storybook-dark-mode": "^1.0.9",
"stylelint": "^14.6.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-high-performance-animation": "^1.6.0",
"stylelint-no-indistinguishable-colors": "^1.3.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-suitcss": "^4.0.0",
"stylelint-value-no-unknown-custom-properties": "^3.0.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.4",
"vite": "^2.7.6",
"vite-plugin-react-svg": "^0.2.0",
"vitest": "^0.7.4"
}
}