-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
{
"name": "assisdent-web-client",
"version": "0.0.0",
"description": "A Web Client for AssisDent SaaS. A project for Tampere University project course.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest --reporters=default --reporters=jest-junit --reporters=jest-html-reporter",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --reporters=jest-html-reporter",
"lint": "eslint src --ext .tsx",
"lint:fix": "eslint src --ext .tsx --fix"
},
"dependencies": {
"@babel/preset-flow": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@tanstack/react-query": "^4.24.4",
"axios": "^1.3.3",
"handlebars": "^4.7.7",
"jest-html-reporter": "^3.8.0",
"jest-junit": "^15.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"zustand": "^4.3.6"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"jest-html-reporter": {
"pageTitle": "Test report",
"outputPath": "reports/jest-reporter-html.html",
"includeFailureMsg": true
},
"author": "Sami Jakonen, Petri Kreus, Johannes Määttä, Markku Nirkkonen, Juho Tapio, Topias Tiilikainen",
"license": "MIT"
}