forked from freeman-lab/control-panel
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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
{
"name": "react-control-panel",
"version": "0.12.5",
"description": "react-compatible, embeddable panel of inputs for parameter settings",
"main": "dist/index.js",
"module": "./dist/index.js",
"scripts": {
"start": "cp demo/index.html dist/index.html && webpack serve",
"build": "rm -rf dist/* && touch dist/.gitignore && webpack --config webpack.prod.js",
"buildDemo": "rm -rf dist/* && touch dist/.gitignore && webpack --config webpack.demo.js && cp demo/index.html dist/index.html",
"lint": "eslint ./src",
"prepublishOnly": "rm -rf dist/* && touch dist/.gitignore && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ameobea/react-control-panel.git"
},
"keywords": [
"slider",
"input",
"range",
"checkbox",
"component",
"color-picker",
"dom",
"css",
"react"
],
"author": "freeman-lab, Casey Primozic <[email protected]> (React port)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ameobea/react-control-panel/issues"
},
"homepage": "https://github.com/ameobea/react-control-panel#readme",
"dependencies": {
"is-numeric": "0.0.9",
"is-string": "^1.0.7",
"prop-types": "^15.8.1",
"react-css-component": "^1.0.2",
"shallow-equal": "=3.1.0",
"simple-color-picker": "^1.0.5",
"uuid": "^10.0.0"
},
"peerDependencies": {
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"path": "^0.12.7",
"react": "^18.3",
"react-dom": "18.3.1",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}