-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
101 lines (101 loc) · 3.16 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
{
"name": "react-flags-select",
"version": "2.2.3",
"description": "react-flags-select React component",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"scripts": {
"lint": "yarn check-types && yarn lint:js",
"check-types": "tsc --noEmit",
"lint:js": "eslint src --ext .js,.json,.ts,.tsx",
"prebuild": "yarn gen-flags-components",
"build": "rollup -c",
"prestart": "yarn gen-flags-components",
"start": "start-storybook -p 6006",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "yarn build",
"build-storybook": "build-storybook",
"gen-flags-components": "node node_modules/@svgr/cli/bin/svgr --typescript --icon -d src/components/Flags/Countries --ignore-existing flags"
},
"dependencies": {
"classnames": "^2.2.6",
"sass": "^1.49.7"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.9",
"@semantic-release/release-notes-generator": "^9.0.1",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-knobs": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.11",
"@svgr/cli": "^5.5.0",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"postcss": "^8.2.2",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.35.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"sass-loader": "^10.1.0",
"semantic-release": "^17.3.3",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekwonye-richard/react-flags-select.git"
},
"author": "Richard Ekwonye",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekwonye-richard/react-flags-select/issues"
},
"homepage": "https://github.com/ekwonye-richard/react-flags-select#readme",
"keywords": [
"react-component"
]
}