This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.51 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
66
67
68
{
"name": "ymock",
"version": "0.0.0",
"description": "A full-featured management GUI for MSW",
"type": "module",
"files": [
"dist"
],
"main": "./dist/ymock.umd.cjs",
"module": "./dist/ymock.js",
"exports": {
".": {
"import": "./dist/ymock.js",
"require": "./dist/ymock.umd.cjs"
}
},
"engines": {
"node": ">=18.18.0"
},
"homepage": "https://github.com/intesys/ymock",
"repository": {
"type": "git",
"url": "https://github.com/intesys/ymock"
},
"author": {
"name": "Intesys SRL",
"url": "https://www.intesys.it/"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"init": "msw init public",
"postinstall": "npm run init"
},
"dependencies": {
"@tabler/icons-react": "^2.38.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0"
},
"devDependencies": {
"@mantine/core": "^7.1.0",
"@mantine/form": "^7.1.0",
"@mantine/hooks": "^7.1.0",
"@mantine/modals": "^7.1.0",
"@mantine/notifications": "^7.1.0",
"@types/node": "^18.18.6",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.1.0",
"msw": "^2.0.0",
"sass": "^1.69.4",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"msw": {
"workerDirectory": "public"
},
"volta": {
"node": "18.18.0"
}
}