-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "react-kvn-funnel",
"version": "0.0.2",
"description": "A small footprint coponent for creating funnels in React.",
"author": "Kevin Abestilla",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kevin1193/react-kvn-funnel.git"
},
"bugs": {
"url": "https://github.com/kevin1193/react-kvn-funnel/issues"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"keywords": [
"node",
"react",
"react-component",
"component",
"funnel"
],
"scripts": {
"build": "parcel build ./src/index.js",
"start": "parcel ./src/index.js"
},
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "^4.5.2"
},
"files": [
"dist"
],
"dependencies": {
"jss": "^10.10.0",
"jss-preset-default": "^10.10.0"
}
}