-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.68 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
{
"name": "word-guess",
"version": "1.4.1",
"private": true,
"main": "src/index.tsx",
"homepage": "./",
"scripts": {
"build": "vite build --config config/vite.config.ts",
"compile": "tsc -p ./src/tsconfig.json",
"coverage": "vitest --config config/vitest.config.ts run --coverage",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint -c src/.eslintrc.js --max-warnings=0 src",
"serve": "vite preview --config config/vite.config.ts",
"start": "vite --config config/vite.config.ts",
"test": "vitest --config config/vitest.config.ts"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-confetti": "^6.0.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"tween-functions": "^1.2.0"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^1.5.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.16.3",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.28.5",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-vitest": "^0.0.34",
"typescript": "~4.9",
"vite": "^3.2.4",
"vitest": "^0.26.2"
}
}