-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.84 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
100
101
102
103
104
105
106
107
108
109
{
"name": "poche",
"version": "0.1.0",
"private": true,
"dependencies": {
"@benrbray/prosemirror-math": "phxtho/prosemirror-math#master",
"@remirror/extension-markdown": "^2.0.6",
"@remirror/pm": "^2.0.0",
"@remirror/react": "^2.0.12",
"file-saver": "^2.0.5",
"framer-motion": "^7.5.4",
"fuse.js": "^6.6.2",
"html-to-prosemirror": "https://github.com/phxtho/html-to-prosemirror",
"katex": "^0.16.2",
"pouchdb": "^7.3.0",
"pouchdb-upsert": "^2.2.0",
"prosemirror-model": "^1.18.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-modal": "^3.15.1",
"react-router-dom": "6.4.2",
"remirror": "^2.0.11",
"use-keyboard-shortcut": "^1.1.6",
"uuid": "^9.0.0",
"y-prosemirror": "^1.2.0",
"y-webrtc": "^10.2.3",
"yjs": "^13.5.41"
},
"scripts": {
"prepare": "husky install",
"dev": "npm run build:css && vite",
"build": "npm run build:css && tsc && vite build",
"build:css": "tailwindcss -o src/index.css",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"pouchdb-debug": "^7.2.1",
"@remirror/dev": "^2.0.7",
"@remirror/react-debugger": "^1.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/file-saver": "^2.0.5",
"@types/fuse": "^2.6.0",
"@types/jest": "^29.1.2",
"@types/katex": "^0.14.0",
"@types/node": "^18.11.0",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-upsert": "^2.2.6",
"@types/prosemirror-model": "^1.16.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.12.1",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"concurrently": "^7.4.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"vite": "^3.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npx prettier --write"
],
"src/**/*.jsx": [
"npx prettier --write"
],
"src/**/*.ts": [
"npx prettier --write"
],
"src/**/*.tsx": [
"npx prettier --write"
]
},
"homepage": "https://phxtho.github.io/poche"
}