-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "terkui-combobox",
"version": "0.1.0",
"description": "React combobox",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"source": "src/index.js",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"lint": "eslint src",
"dev": "npm-run-all --parallel build-watch",
"format": "prettier --write \"src/**/*.js\"",
"prebuild": "rimraf build",
"prepublish": "npm run build",
"test": "npm run unit:test && npm run integration:test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"integration:test": "cypress run",
"unit:test": "jest",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "[email protected]:rkterungwa16/terkui-combobox.git"
},
"keywords": [
"react",
"combobox"
],
"author": "Terungwa Kombol",
"license": "MIT",
"bugs": {
"url": "https://github.com/rkterungwa16/terkui-combobox/issues"
},
"homepage": "https://github.com/rkterungwa16/terkui-combobox#readme",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.2.0",
"uninstall": "^0.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/react": "^6.1.18",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"cypress": "^10.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rollup": "^2.32.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"storybook": "^6.1.18"
}
}