-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "signals-demos",
"version": "1.0.0",
"type": "module",
"description": "Simple Preact Signals Demo w/TypeScript and Mantine",
"author": "Eric J. Feminella",
"license": "MIT",
"main": "src/index.tsx",
"scripts": {
"start": "vite",
"start:prod": " yarn clean; yarn build; vite preview",
"build": "yarn clean; tsc && vite build",
"lint": "npx eslint . --fix",
"clean": "rimraf ./dist",
"clean:install": "rimraf ./node_modules; yarn"
},
"dependencies": {
"@mantine/core": "^7.6.1",
"@mantine/hooks": "^7.6.1",
"@preact/signals-react": "^1.3.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"rimraf": "^5.0.5",
"vite": "^3.0.4"
}
}