-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "simple-windows11-emulator",
"version": "0.0.1",
"description": "",
"author": "bre97-web",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bre97-web/simple-windows11-emulator"
},
"bugs": {
"url": "https://github.com/bre97-web/simple-windows11-emulator/issues"
},
"homepage": "https://github.com/bre97-web/simple-windows11-emulator",
"scripts": {
"lint": "wireit",
"dev": "wireit",
"build": "wireit",
"preview": "wireit",
"publish:firebase": "node ./scripts/publish-to-firebase.js",
"publish:github": "node ./scripts/publish-to-github.js",
"test": "exit 0"
},
"type": "module",
"files": [],
"workspaces": [],
"dependencies": {
"@fluentui/react-calendar-compat": "^0.0.2",
"@fluentui/react-components": "^9.36.0",
"@melloware/coloris": "^0.21.1",
"@reduxjs/toolkit": "^1.9.7",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react-swc": "^3.4.0",
"autoprefixer": "^10.4.15",
"lit": "^3.0.0",
"material-symbols": "^0.10.4",
"mobx-react": "^9.0.1",
"moment": "^2.29.4",
"postcss": "^8.4.27",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.17.0",
"redux": "^4.2.1",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-plugin-react": "^7.33.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"wireit": "^0.10.0"
},
"wireit": {
"build": {
"dependencies": [
"build:src"
]
},
"build:src": {
"command": "vite build",
"files": [
"src/**/*"
],
"output": [
"docs/**/*"
],
"dependencies": [
"lint"
]
},
"lint": {
"command": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"files": [
"src/**/*"
]
},
"preview": {
"dependencies": [
"preview:src"
]
},
"preview:src": {
"command": "vite preview"
},
"dev": {
"dependencies": [
"dev:src"
]
},
"dev:src": {
"command": "vite"
}
}
}