-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.48 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
{
"name": "cryptocons",
"version": "1.3.4",
"description": "Cryptocurrency logos as tidy, optimized SVG React components.",
"keywords": [
"cryptocurrency logos",
"crypto icons",
"react",
"icon",
"svg"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"rollup": "rollup -c",
"build": "ts-node scripts/builder",
"test": "react-scripts test",
"storybook": "start-storybook -p 6006",
"pre-publish": "yarn build && yarn rollup"
},
"repository": {
"type": "git",
"url": "https://github.com/rossmoody/cryptocons"
},
"author": "Ross Moody <ross@rossmoody.com>",
"license": "MIT",
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/components": "^6.4.1",
"@storybook/core-events": "^6.4.1",
"@storybook/react": "^6.3.12",
"@storybook/theming": "^6.4.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/cli-table": "^0.3.0",
"@types/jest": "^27.5.0",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.9",
"@types/prettier": "^2.4.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.3",
"@types/styled-components": "^5.1.15",
"@types/svg-parser": "^2.0.3",
"@types/svgo": "^2.6.0",
"babel-loader": "^8.2.3",
"chalk": "^4.1.2",
"cli-table": "^0.3.9",
"jest": "^28.1.0",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"react-scripts": "^5.0.1",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"svg-parser": "^2.0.4",
"svgo": "^2.8.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}