-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.07 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
{
"name": "baptistemcn-website",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://baptistemcn.github.io/",
"scripts": {
"dev": "vite",
"build": "NODE_ENV=production tsc && vite build",
"test": "jest --run-in-band",
"test:coverage": "jest --coverage --verbose --ci --run-in-band --bail --silent",
"test:watch": "jest --watch --run-in-band",
"test:e2e": "NODE_ENV=development cypress run",
"test:e2e:open": "NODE_ENV=development cypress open",
"test:e2e:prod": "NODE_ENV=production cypress run",
"test:e2e:prod:open": "NODE_ENV=production cypress open",
"format": "prettier . --write",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deploy": "gh-pages -d dist",
"prepare": "husky install"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-router-dom": "^6.14.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"cypress": "^12.15.0",
"eslint": "^8.43.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.5",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-file-loader": "^1.0.3",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-sitemap": "^0.4.2"
}
}