forked from Gandi-IDE/gandi-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.29 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
{
"name": "gandi-plugins",
"version": "0.0.1",
"description": "Plug-ins for Gandi-IDE.",
"main": "dist/index.js",
"types": "lib/main.d.ts",
"author": "Luka (https://github.com/zxq142857)",
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/Gandi-IDE/gandi-plugins.git"
},
"scripts": {
"createPlugin": "plop",
"start": "webpack-dev-server --config webpackDevServer.config.js",
"startHostCocrea": "cross-env SITE=COCREA webpack-dev-server --config webpackDevServer.config.js",
"build": "webpack --config webpack.config.js --progress",
"buildSinglePlugin": "node scripts/build-single-plugin.js",
"lint": "eslint src --ext .js,.ts",
"prepublishOnly": "pnpm install && pnpm build",
"clean": "rimraf lib && mkdirp lib && rimraf ./dist && mkdirp dist"
},
"files": [
"dist",
"lib"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@chatscope/chat-ui-kit-react": "^2.0.3",
"@chatscope/chat-ui-kit-styles": "^1.4.0",
"@chatscope/use-chat": "^3.1.2",
"@formatjs/intl": "^2.5.1",
"@gandi-ide/gandi-ui": "^1.0.8",
"@legendapp/state": "^0.23.3",
"@tanstack/react-virtual": "^3.0.0-beta.45",
"classnames": "^2.3.2",
"computed-style-to-inline-style": "^4.0.0",
"deep-object-diff": "^1.1.9",
"gandiblocks": "^1.0.2",
"livekit-client": "^2.3.2",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-hot-toast": "^2.4.1",
"react-intl": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@svgr/webpack": "^6.3.1",
"@teamsupercell/typings-for-css-modules-loader": "^2.5.1",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.11.30",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"axios": "^1.7.2",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "10.2.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.31.8",
"handlebars": "^4.7.8",
"html-webpack-plugin": "^5.6.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"plop": "^3.1.1",
"postcss": "^8.4.17",
"postcss-loader": "^7.0.1",
"postcss-nested": "^6.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.90.3",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"yargs": "^17.7.2"
},
"browserslist": [
"last 2 versions",
"> 1%"
]
}