-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 2.01 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
{
"browserslist": [
"supports es6-module"
],
"dependencies": {
"firebase": "^9.8.1",
"i18next": "^21.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-i18next": "^11.16.9",
"react-router-dom": "^6.3.0",
"react-select": "^5.2.2"
},
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/node": "^17.0.32",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.3",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vitejs/plugin-react": "^1.3.2",
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jsdom": "^19.0.0",
"react-test-renderer": "^17.0.2",
"source-map-explorer": "^2.5.2",
"stylelint": "^14.8.2",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.6.4",
"vite": "^2.9.13",
"vite-plugin-svgr": "^2.1.0",
"vitest": "^0.12.4"
},
"name": "react-ttt",
"private": true,
"scripts": {
"analyze": "yarn build && source-map-explorer 'dist/assets/*.js'",
"build": "tsc && vite build",
"deploy": "yarn build && firebase deploy",
"fix-lint": "eslint --fix src",
"lint": "eslint src",
"lint-all": "yarn typecheck && yarn lint && yarn stylelint",
"start": "vite",
"stylelint": "stylelint src/css/*.css",
"stylelint-fix": "stylelint --fix src/*.css src/**/*.css",
"test": "vitest",
"test:ci": "vitest run",
"typecheck": "tsc"
},
"version": "0.1.0"
}