-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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
{
"name": "grapesjs-react",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "yarn build:core && yarn build:app-18 && yarn build:app-19",
"start": "yarn workspace @grapesjs/react run dev & yarn workspace @grapesjs/react-app run dev",
"clean": "find . -type d \\( -name \"node_modules\" -o -name \"build\" -o -name \"dist\" \\) -exec rm -rf {} + && rm ./yarn.lock",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:core": "yarn workspace @grapesjs/react run build",
"build:app-18": "yarn workspace @grapesjs/react-app-18 run build",
"build:app-19": "yarn workspace @grapesjs/react-app-19 run build",
"release:core:latest": "ts-node scripts/releaseCore latest",
"release:core:rc": "ts-node scripts/releaseCore rc",
"publish:core:latest": "cd packages/grapesjs-react && npm publish --access public",
"publish:core:rc": "cd packages/grapesjs-react && npm publish --tag rc --access public"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react",
"**/react-dom",
"**/react/**",
"**/react-dom/**",
"**/@types/react",
"**/@types/react-dom"
]
},
"dependencies": {
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"grapesjs": "^0.22.5",
"postcss": "^8.4.24",
"prettier": "3.3.1",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^4.5.0"
}
}