-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.64 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
{
"name": "template-ui",
"private": true,
"version": "0.0.1",
"type": "module",
"homepage": "https://kosgdk.github.io/2048",
"scripts": {
"dev": "vite",
"build": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"preview": "vite preview",
"lint": "eslint . --fix && stylelint \"**/*.scss\" --fix && prettier . --write",
"lint:check": "npm-run-all --sequential --continue-on-error eslint:check stylelint:check prettier:check check-test-structure",
"eslint:check": "eslint . --max-warnings 0",
"stylelint:check": "stylelint \"**/*.scss\"",
"prettier:check": "prettier . --check",
"check-test-structure": "node check-tests-structure.js",
"test:unit": "jest --reporters='default' --reporters='jest-junit' --collectCoverage=true --coverageReporters='text' --coverageReporters='lcov' --runInBand --testLocationInResults",
"tsc": "tsc"
},
"dependencies": {
"@react-hookz/web": "24.0.2",
"@types/lodash": "4.14.202",
"clsx": "2.1.0",
"lodash": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-swipeable": "7.0.1"
},
"devDependencies": {
"@babel/preset-env": "7.23.6",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.11",
"@types/jest-expect-message": "1.1.0",
"@types/jest-when": "3.5.5",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@vitejs/plugin-react": "4.0.4",
"babel-jest": "29.7.0",
"blob-polyfill": "7.0.20220408",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.3.4",
"eslint-plugin-unused-imports": "3.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-expect-message": "1.1.3",
"jest-extended": "4.0.2",
"jest-fail-on-console": "3.1.2",
"jest-junit": "16.0.0",
"jest-mock-extended": "3.0.5",
"jest-mock-props": "1.9.1",
"jest-transform-stub": "2.0.0",
"jest-when": "3.6.0",
"jsdom": "20.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-plugin-rational-order": "1.0.3",
"react-fast-compare": "3.2.2",
"react-test-renderer": "18.2.0",
"sass": "1.55.0",
"stylelint": "14.16.1",
"stylelint-config-css-modules": "4.3.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard-scss": "6.1.0",
"stylelint-high-performance-animation": "1.9.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "3.0.0",
"stylelint-scss": "5.3.2",
"ts-jest": "29.1.1",
"typescript": "5.3.3",
"vite": "4.5.2",
"vite-plugin-css-export": "2.0.0",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-mkcert": "1.14.1",
"vite-plugin-rewrite-all": "1.0.1",
"vite-tsconfig-paths": "4.0.2",
"wait-for-expect": "3.0.2"
}
}