-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.86 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
63
64
65
66
67
68
{
"name": "react-sync-board",
"version": "1.2.11",
"description": "React-sync-board is a board for react",
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-sync-board.umd.cjs",
"module": "./dist/react-sync-board.js",
"exports": {
".": {
"import": "./dist/react-sync-board.js",
"require": "./dist/react-sync-board.umd.cjs"
}
},
"author": "Jérémie Pardou",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jrmi/react-sync-board"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:website": "tsc && BUILD_WEBSITE='true' vite build",
"watch": "tsc && vite build --watch",
"preview": "vite preview",
"lint": "eslint src",
"version": "git changelog -n -t $npm_package_version && git add CHANGELOG.md"
},
"peerDependencies": {
"react": ">= 18",
"react-dom": ">= 18"
},
"dependencies": {
"@react-hookz/web": "^22.0.0",
"color2k": "^2.0.0",
"fast-deep-equal": "^3.1.3",
"goober": "^2.1.12",
"nanoid": "^3.3.2",
"npm-cli": "^0.1.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@scripters/use-socket.io": "github:jrmi/use-socket.io#updated-v2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@vitejs/plugin-react": "^3.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"rc-slider": "^9.7.2",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.3",
"styled-components": "^5.3.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"wire.io": "^3.3.2"
}
}