-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "your-store-website",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "vite",
"dev:backend": "uvicorn api.main:app --host 0.0.0.0 --port 8000 --reload",
"build": "vite build",
"preview": "vite preview",
"serve": "vite preview",
"test": "jest --config src/jest.config.cjs",
"test:frontend": "npm run test",
"test:backend": "pytest --cov=api api/tests/ --cov-report=xml",
"test:stack": "npm run test:frontend && npm run test:backend"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@sentry/vite-plugin": "^2.22.5",
"@sentry/vue": "^8.37.0",
"pinia": "^2.1.0",
"vue": "^3.3.0",
"vue-router": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@codecov/vite-plugin": "^1.2.0",
"@vitejs/plugin-vue": "^4.2.0",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"concurrently": "^7.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"vite": "^4.5.0"
}
}