-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.21 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
{
"name": "@collaborne/remirror-suggest-search",
"description": "Extension and tools to create a remirror suggest search",
"version": "0.1.5",
"author": "Collaborne - Idriss Mahjoubi",
"license": "UNLICENSED",
"repository": "Collaborne/remirror-suggest-search",
"main": "dist/index.js",
"source": "src/index.ts",
"engines": {
"npm": ">=8.3.0",
"node": ">=10"
},
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "npm run build:tsc --",
"build:tsc": "tsc --noEmit false -p tsconfig.dist.json",
"build:watch": "tsc-watch -p tsconfig.dist.json --noEmit false --onSuccess \"yalc push --watch\"",
"test": "run-s lint test:unit",
"test:unit": "npx jest",
"predeploy": "run-s storybook:build",
"deploy": "gh-pages -d storybook-static",
"storybook": "NODE_OPTIONS=\"${NODE_OPTIONS} --openssl-legacy-provider\" FAST_REFRESH=false storybook dev -p 9009",
"storybook:build": "storybook build"
},
"peerDependencies": {
"@mui/material": "^6.1.8",
"react": "^17.0.0 || ^18.0.0",
"react-icons": "^5.3.0"
},
"dependencies": {
"@reactuses/core": "^5.0.21",
"@remirror/pm": "^2.0.0",
"@remirror/react": "^2.0.0",
"@remirror/styles": "^2.0.0",
"prosemirror-model": "^1.18.3",
"prosemirror-state": "^1.4.2",
"prosemirror-view": "^1.29.1",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^18.3.1",
"remirror": "^2.0.39",
"rollup": "^4.21.0",
"search-query-parser": "^1.6.0",
"ts-jest": "^29.2.4",
"tsc-watch": "^6.2.0"
},
"devDependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@emotion/css": "^11.13.5",
"@mui/material": "^6.1.8",
"@storybook/addon-actions": "^8.0.4",
"@storybook/addon-controls": "^8.0.4",
"@storybook/addon-links": "^8.0.4",
"@storybook/addon-toolbars": "^8.0.4",
"@storybook/react": "^8.0.4",
"@storybook/react-vite": "^8.0.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.3",
"@types/node": "^22.10.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@vitejs/plugin-react": "^4.2.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-collaborne": "^5.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^4.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^2.0.0",
"jest-remirror": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-is": "^18.2.0",
"storybook": "^8.0.4",
"ts-node": "~10.8.1",
"tsconfig-collaborne": "^1.8.1",
"tss-react": "^4.9.13",
"typescript": "^5.7.2"
},
"files": [
"assets",
"dist",
"src",
"tsconfig.dist.json"
]
}