-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 3.04 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
{
"name": "k-paste",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@infomaniak/ksuite-bridge": "0.3.3",
"@mui/icons-material": "5.15.17",
"@mui/material": "5.15.17",
"base-x": "4.0.0",
"highlight.js": "11.9.0",
"http-server": "14.1.1",
"i18next": "23.11.4",
"i18next-browser-languagedetector": "8.0.0",
"javascript-time-ago": "2.5.10",
"node-fetch": "3.3.2",
"pako": "2.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-helmet-async": "2.0.5",
"react-i18next": "14.1.1",
"react-router-dom": "6.23.1",
"react-time-ago": "7.3.3"
},
"scripts": {
"start": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"server-edge": "http-server ./dist -p 3000 -c-1 --silent --proxy http://localhost:3000?",
"server-firefox": "http-server ./dist -p 3001 -c-1 --silent --proxy http://localhost:3001?",
"server-chrome": "http-server ./dist -p 3002 -c-1 --silent --proxy http://localhost:3002?",
"cy:run-chrome": "cypress run --browser chrome",
"cy:run-firefox": "cypress run --browser firefox",
"cy:open": "cypress open",
"test": "vitest",
"test-edge": "start-server-and-test server-edge 3000 browserstack-run",
"test-firefox": "CYPRESS_BASE_URL=http://localhost:3001 start-server-and-test server-firefox 3001 cy:run-firefox",
"test-chrome": "CYPRESS_BASE_URL=http://localhost:3002 start-server-and-test server-chrome 3002 cy:run-chrome",
"translations": "node node_modules/i18next-parser/bin/cli.js 'src/**/*.{js,jsx}'",
"browserstack-run": "browserstack-cypress run",
"browserstack-info": "browserstack-cypress build-info"
},
"engines": {
"node": ">=12.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.2",
"@types/pako": "2.0.3",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@types/react-helmet": "6.1.11",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@vitejs/plugin-react-swc": "3.6.0",
"browserstack-cypress-cli": "1.31.5",
"cypress": "13.9.0",
"cypress-vite": "1.5.0",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.7",
"flow-bin": "0.245.0",
"happy-dom": "14.10.2",
"husky": "9.0.11",
"i18next-parser": "8.13.0",
"sass": "1.77.1",
"start-server-and-test": "2.0.3",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}