-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "react-simple-options-selector",
"version": "1.0.3",
"description": "React Simple Options Selector",
"main": "lib/ReactSimpleOptionsSelector.js",
"author": "Ankith Konda",
"homepage": "https://github.com/ankithkonda/react-simple-options-selector",
"repository": {
"type": "git",
"url": "https://github.com/ankithkonda/react-simple-options-selector.git"
},
"bugs": {
"url": "https://github.com/ankithkonda/react-simple-options-selector/issues"
},
"dependencies": {
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"jquery": "^3.5.0",
"polished": "^1.4.1",
"prop-types": "^15.5.10",
"styled-components": "^4.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.22.9",
"eslint": "8.45.0",
"eslint-plugin-react": "7.33.0",
"gulp": "4.0.2",
"gulp-react-docs": "1.0.1",
"react": "16.14.0",
"react-component-gulp-tasks": "0.7.7",
"react-dom": "16.14.0"
},
"peerDependencies": {
"react": "^16.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component"
]
}