forked from plouc/nivo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.17 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
102
103
104
105
106
107
108
109
{
"name": "nivo",
"private": true,
"licenses": [
{
"type": "MIT",
"url": "https://github.com/plouc/nivo/blob/master/LICENSE.md"
}
],
"repository": {
"type": "git",
"url": "git://github.com/plouc/nivo"
},
"author": {
"name": "Raphaël Benitte",
"url": "https://github.com/plouc"
},
"keywords": [],
"dependencies": {
"@babel/core": "^7.16.5",
"@ekino/config": "^0.3.0",
"@nivo/generators": "*",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-storysource": "^6.4.9",
"@storybook/addons": "^6.4.9",
"@storybook/react": "^6.4.9",
"@storybook/theming": "^6.4.9",
"@types/enzyme": "^3.10.10",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.6",
"@wyze/clog-cli": "^1.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.3",
"babel-plugin-lodash": "^3.3.4",
"chalk": "^2.4.2",
"core-js": "^3.19.3",
"enzyme": "^3.11.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^1.0.0",
"jest": "^27.4.5",
"jsdom": "^19.0.0",
"lerna": "^3.22.1",
"lodash": "^4.17.21",
"netlify-cli": "^8.4.2",
"npm-normalize-package-bin": "^1.0.1",
"prettier": "^2.5.1",
"prop-types": "^15.7.2",
"puppeteer": "^0.13.0",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.61.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-prettier": "^2.2.0",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-strip-banner": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"serve": "^13.0.2",
"typescript": "^4.5.4"
},
"resolutions": {
"@types/react": "^17.0.11",
"@types/eslint": "7.29.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"scripts": {
"changelog": "rm CHANGELOG.md && node scripts/generate-changelog.js",
"make:init": "make init",
"prepublishOnly": "yarn release:prepare",
"release:prepare": "node scripts/bump-peer-deps.js && yarn changelog",
"version": "yarn release:prepare",
"build": "echo 'nothing to do, please use make for available commands'",
"heroku-postbuild": "make packages-build && cd api && yarn build"
},
"workspaces": [
"packages/*",
"api",
"website"
],
"engines": {
"node": "16.x"
},
"devDependencies": {
"@storybook/addon-essentials": "^6.4.9"
}
}