-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 KB
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": "payment-list-challenge-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "npm install && vitest run",
"test:coverage": "vitest run --coverage",
"test:step1": "vitest -t \"Step 1:\"",
"test:step2": "vitest -t \"Step 2:\"",
"test:step3": "vitest -t \"Step 3:\"",
"test:step4": "vitest -t \"Step 4:\"",
"test:step5": "vitest -t \"Step 5:\"",
"test:step6": "vitest -t \"Step 6:\"",
"test:step7": "vitest -t \"Step 7:\"",
"test:step8": "vitest -t \"Step 8:\"",
"score": "npm install && node scoring.js"
},
"dependencies": {
"@tanstack/react-query": "^5.81.5",
"axios": "^1.10.0",
"date-fns": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.1.18"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.11.24",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.3",
"autoprefixer": "^10.4.17",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"fast-xml-parser": "^4.3.2",
"globals": "^15.15.0",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"msw": "^2.8.2",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.3.4",
"vitest": "^3.1.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}