This repository has been archived by the owner on May 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
113 lines (113 loc) · 3.25 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-dat-gui",
"version": "4.1.1",
"description": "dat.GUI reimagined for React",
"main": "dist/index.cjs.js",
"exports": "./dist/index.cjs.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"style": "dist/index.css",
"types": "dist/index.d.ts",
"author": "Claus Wahlers <[email protected]> (https://github.com/claus)",
"contributors": [
{
"name": "Claus Wahlers",
"email": "[email protected]",
"url": "https://github.com/claus"
},
{
"name": "Rohan Deshpande",
"email": "[email protected]",
"url": "https://github.com/rohan-deshpande"
},
{
"name": "Tim Ellenberger",
"email": "[email protected]",
"url": "https://github.com/tim-soft"
}
],
"license": "MIT",
"keywords": [
"react",
"dat.gui"
],
"repository": {
"type": "git",
"url": "[email protected]:claus/react-dat-gui.git"
},
"bugs": {
"url": "https://github.com/claus/react-dat-gui/issues"
},
"homepage": "https://claus.github.io/react-dat-gui/",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"deploy": "cd example && npm run deploy"
},
"dependencies": {
"classnames": "2.2.6",
"lodash.clamp": "^4.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.isfinite": "^3.3.2",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.result": "^4.5.2",
"lodash.set": "^4.3.2",
"react-color": "^2.19.3",
"sass": "^1.32.8"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/helper-plugin-test-runner": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"autoprefixer": "^10.2.5",
"babel-eslint": "10.0.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-polyfill": "^6.26.0",
"cssnano": "^4.1.10",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rollup": "^2.44.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-scss": "^2.6.1",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}