-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.04 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.04 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
{
"name": "frontend-tech-test",
"version": "1.0.0",
"private": true,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"engines": {
"node": "20.11.1",
"npm": ">= 6.13.6",
"yarn": ">= 3.4.1"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"sass": "^1.93.2",
"typescript": "^5.9.3",
"vite": "^7.1.10"
},
"dependencies": {
"@lumx/core": "^3.18.0",
"@lumx/icons": "^3.18.0",
"@lumx/react": "^3.18.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-range": "^4.0.2",
"msw": "^2.11.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.4"
},
"msw": {
"workerDirectory": [
"public"
]
}
}