-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.38 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
117
118
119
{
"name": "biscuit-machine",
"version": "2.56.0",
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"start": "craco start",
"lint": "eslint './**/*.{js,jsx,ts,tsx}'",
"build": "craco build",
"test": "NODE_ENV=test craco test",
"test-coverage": "NODE_ENV=test CI=true craco test --coverage",
"test-e2e": "NODE_ENV=test jest e2e",
"prestorybook": "tailwindcss-cli build src/App/index.css -o .storybook/index.css",
"storybook": "start-storybook -p 6006 -s public",
"prebuild-storybook": "tailwindcss-cli build src/App/index.css -o .storybook/index.css",
"build-storybook": "build-storybook -s public",
"chromatic": "npx chromatic --exit-zero-on-changes --auto-accept-changes"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"!<rootDir>/src/**/*.stories.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"html"
]
},
"dependencies": {
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@reduxjs/toolkit": "1.5.1",
"add": "2.0.6",
"i18next": "20.2.4",
"i18next-browser-languagedetector": "6.1.1",
"i18next-http-backend": "1.2.4",
"immer": "9.0.2",
"lodash.memoize": "4.1.2",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-countup": "4.3.3",
"react-dom": "17.0.2",
"react-dom-confetti": "0.2.0",
"react-helmet": "6.1.0",
"react-i18next": "11.8.15",
"react-modal": "3.13.1",
"react-scripts": "4.0.3",
"react-sound": "1.2.0",
"tailwindcss": "npm:@tailwindcss/[email protected]",
"typescript": "4.2.4",
"uuid": "8.3.2",
"yarn": "1.22.10",
"zustand": "3.5.1"
},
"devDependencies": {
"@babel/core": "7.14.0",
"@craco/craco": "5.9.0",
"@storybook/addon-actions": "6.2.9",
"@storybook/addon-essentials": "6.2.9",
"@storybook/addon-links": "6.2.9",
"@storybook/node-logger": "6.2.9",
"@storybook/preset-create-react-app": "3.1.7",
"@storybook/react": "6.2.9",
"@tailwindcss/postcss7-compat": "2.1.2",
"@testing-library/dom": "7.31.0",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "13.1.9",
"@types/jest": "26.0.23",
"@types/jest-image-snapshot": "4.3.0",
"@types/node": "15.0.2",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.4",
"@types/react-sound": "1.2.2",
"adm-zip": "0.5.6",
"autoprefixer": "9.8.6",
"babel-loader": "8.1.0",
"chromatic": "5.8.3",
"craco-alias": "2.3.0",
"craco-less": "1.17.1",
"eslint": "7.26.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jest-dom": "3.9.0",
"eslint-plugin-testing-library": "4.5.0",
"husky": "6.0.0",
"jest": "26.6.0",
"jest-image-snapshot": "4.5.0",
"jest-playwright-preset": "1.5.2",
"joi": "17.4.0",
"json5": "2.2.0",
"net": "1.0.2",
"playwright": "1.11.1",
"postcss": "7.0.35",
"react-is": "16.13.1",
"reflect-metadata": "0.1.13",
"tailwindcss-cli": "0.1.2",
"ts-jest": "26.5.6"
}
}