forked from rakannimer/react-google-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.64 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": "react-google-charts",
"version": "4.0.0",
"description": "react-google-charts React component",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"scripts": {
"emitDeclarations": "tsc --skipLibCheck --emitDeclarationOnly",
"build": "rollup -c & yarn emitDeclarations",
"start:storybook": "start-storybook -p 6006 --ci",
"build:storybook": "del ./storybook-static; NODE_ENV=production build-storybook",
"format:src": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"format:test": "prettier --write 'test/**/*.{js,jsx,ts,tsx}'",
"format:sandboxes": "prettier --write 'sandboxes/**/*.{js,jsx,ts,tsx}'",
"format:stories": "prettier --write 'stories/**/*.{js,jsx,ts,tsx}'",
"format": "yarn format:src && yarn format:test && yarn format:sandboxes && yarn format:stories",
"jest": "jest -c jest.config.json",
"test:unit": "yarn jest",
"test:size": "size-limit",
"test": "yarn test:unit",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "yarn bumpVersion && git push origin master --tags && yarn createGithubRelease",
"cleanPublish": "yarn test && yarn build && clean-publish",
"updateGitHooks": "simple-git-hooks"
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@swc/core": "^1.2.108",
"@swc/helpers": "^0.3.2",
"@swc/jest": "^0.2.5",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^28.1.0",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"browserslist": "^4.18.1",
"clean-publish": "^4.0.0",
"commitizen": "^4.2.4",
"del-cli": "^4.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jsdom": "^19.0.0",
"nano-staged": "^0.8.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.0",
"rollup-plugin-swc": "^0.2.0",
"simple-git-hooks": "^2.7.0",
"simple-github-release": "^1.0.0",
"size-limit": "^7.0.0",
"standard-version": "^9.3.2",
"typescript": "^4.5.2",
"webpack": "^5.64.2"
},
"author": "Rakan Nimer",
"homepage": "https://rakannimer.github.io/react-google-charts/",
"license": "MIT",
"repository": "https://github.com/RakanNimer/react-google-charts",
"keywords": [
"react",
"google",
"charts"
],
"files": [
"dist/"
]
}