forked from Darginec05/Yoopta-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.14 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
{
"name": "yoopta",
"workspaces": [
"packages/plugins/*",
"packages/tools/*",
"packages/marks",
"packages/core/*",
"packages/development"
],
"private": true,
"scripts": {
"dev": "npm-run-all --parallel start serve",
"start": "yarn lerna run start --parallel --ignore development $(if [ -n \"$PACKAGES\" ]; then echo $PACKAGES | sed 's/[^ ]* */--scope &/g'; fi)",
"serve": "yarn lerna run dev --scope=development",
"build": "yarn clean && yarn install && yarn lerna run build --parallel --ignore development",
"clean": "find ./packages -type d -name dist ! -path './packages/development/*' -exec rm -rf {} +",
"coverage": "vitest run --coverage",
"test": "vitest",
"test:ui": "vitest --ui",
"test:integration": "playwright test",
"release": "yarn clean && yarn build && yarn lerna publish --no-private"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@svgr/rollup": "^6.5.1",
"@svgr/webpack": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/is-url": "^1.2.30",
"@types/node": "17.0.8",
"@types/prismjs": "^1.26.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-react": "^3.0.1",
"@vitest/ui": "^0.28.3",
"autoprefixer": "^10.4.17",
"babel-plugin-prismjs": "^2.1.0",
"check-peer-dependencies": "^4.3.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.8",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jsdom": "^21.1.0",
"lerna": "^6.5.1",
"mini-css-extract-plugin": "^2.6.1",
"next": "13.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-import": "^16.0.0",
"postcss-nesting": "^12.0.2",
"postcss-scope": "^1.7.3",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"rollup": "^3.2.3",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-uglify": "6.0.0",
"sass": "^1.55.0",
"slate": "^0.102.0",
"slate-react": "^0.102.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^0.28.3"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"ai": "^2.1.8",
"openai": "^3.2.1",
"openai-edge": "^1.1.0",
"openai-streams": "^5.3.0"
}
}