forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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
{
"name": "overmind-devtools-client",
"version": "1.0.0-alpha1",
"description": "Overmind devtool",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"scripts": {
"start": "concurrently \"npm run start:ws\" \"npm run start:devtools\"",
"start:ws": "node server.js",
"start:devtools": "OV_DEV_PORT=$OV_DEV_PORT webpack-dev-server",
"build": "webpack --config webpack.prod.js",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepare": "npm run build"
},
"keywords": [
"overmind",
"devtool"
],
"dependencies": {
"@babel/runtime": "^7.28.6",
"color-hash": "^2.0.2",
"@emotion/css": "^11.13.5",
"lodash.clonedeep": "^4.5.0",
"overmind-react": "next",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tslib": "^2.8.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.28.6",
"babel-loader": "^10.1.1",
"concurrently": "^9.2.1",
"html-webpack-plugin": "^5.6.6",
"url-loader": "^4.1.1",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.105.4",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
}
}