-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.5 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
{
"name": "react-dripicons",
"version": "1.1.3",
"description": "React components for Dripicons",
"main": "build/index.js",
"module": "dist/index.js",
"sideEffects": false,
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest --maxWorkers=50%",
"compile": "rm -rf src/icons && node bin/build.js",
"build:bundle": "rm -rf build && rollup --config rollup.config.js",
"build:es": "rm -rf dist && babel src --out-dir dist --ignore \"src/**/*.spec.js\",\"src/**/*.stories.js\" --copy-files --no-copy-ignored",
"build": "concurrently \"npm:build:*\"",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=14.15.0"
},
"files": [
"dist"
],
"author": "Paul Jaworski",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pjaws/react-dripicons.git"
},
"bugs": {
"url": "https://github.com/pjaws/react-dripicons/issues"
},
"homepage": "https://github.com/pjaws/react-dripicons#readme",
"keywords": [
"react",
"icons",
"svg",
"dripicons"
],
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.2.2",
"concurrently": "^7.5.0",
"dripicons": "git+https://github.com/pjaws/dripicons.git",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"fs-extra": "^10.1.0",
"globby": "^11.1.0",
"husky": "^8.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"storybook": "^7.5.3"
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^18.2.0 || ^17.0.2"
}
}