-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.02 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
{
"name": "twenty48",
"version": "1.2.0",
"private": true,
"type": "module",
"homepage": "https://cgado12.github.io/Twenty48/",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.15.14",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.170",
"@types/node": "^20.12.2",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.23",
"@vitejs/plugin-react-swc": "^3.6.0",
"gh-pages": "^5.0.0",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dom-confetti": "^0.2.0",
"react-icons": "^5.0.1",
"react-swipeable": "^7.0.1",
"recoil": "^0.7.7",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"web-vitals": "^3.5.2"
},
"scripts": {
"start": "vite",
"build": "tsc --noEmit && vite build",
"test": "vitest",
"serve": "vite preview",
"test:coverage": "vitest run --coverage --watch=false",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"bd": "npm run build && gh-pages -d dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"vitest": "^1.4.0"
}
}