-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.39 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
{
"name": "library-hexa-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"react:dev": "vite --config vite-react.config.ts",
"react:build": "tsc && vite --config vite-react.config.ts build",
"react:component:serve": "NODE_ENV=production vite --config vite-react.config.ts",
"react:test:component": "start-server-and-test react:component:serve http://localhost:3030 test:component:open",
"react:test:component:ci": "start-server-and-test react:component:serve http://localhost:3030 test:component:run",
"vue:dev": "vite --config vite-vue.config.ts",
"vue:build": "vue-tsc && vite --config vite-vue.config.ts build",
"vue:component:serve": "vite --config vite-vue.config.ts",
"vue:test:component": "start-server-and-test vue:component:serve http://localhost:3030 test:component:open",
"vue:test:component:ci": "start-server-and-test vue:component:serve http://localhost:3030 test:component:run",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:component:open": "cypress open --config-file test/component/cypress.config.ts",
"test:component:run": "cypress run --config-file test/component/cypress.config.ts"
},
"dependencies": {
"i18next": "^23.2.11",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-vue": "^4.0.0",
"piqure": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.14.2",
"vue": "^3.4.36",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.6",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react": "^4.0.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/coverage-v8": "^2.0.5",
"axios": "^1.4.0",
"cypress": "^13.13.2",
"eslint": "^8.46.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"jsdom": "^24.1.1",
"sinon": "^18.0.0",
"start-server-and-test": "^2.0.0",
"typescript": "^5.0.2",
"vite": "^5.4.0",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.29"
}
}