-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
116 lines (116 loc) · 3.14 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
110
111
112
113
114
115
116
{
"name": "grommet-controls",
"version": "3.0.2",
"description": "grommet 2 controls",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"package.json",
"README.md",
"themes.js",
"themes.d.ts",
"chartjs.js",
"chartjs.d.ts"
],
"authors": [
"Atanas Stoyanov"
],
"keywords": [
"grommet",
"react",
"grommet-next",
"react ui"
],
"homepage": "https://grommet-controls.netlify.app",
"bugs": "https://github.com/atanasster/grommet-controls/issues",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atanasster/grommet-controls.git"
},
"scripts": {
"build": "rollup -c && tsc",
"build-watch": "rollup -c -w",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run docs\"",
"docs": "gatsby develop",
"build-docs": "gatsby build",
"test:create": "cc-cli -g doc -c ./.config -w",
"test": "yarn jest",
"pub": "npm run build && npm publish"
},
"peerDependencies": {
"grommet": ">= 2.7.10",
"grommet-icons": ">= 4.1.0",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"styled-components": ">= 4.1.3"
},
"dependencies": {
"chartjs": "^0.3.24",
"text-mask-addons": "^3.7.2",
"text-mask-core": "^5.0.1"
},
"devDependencies": {
"@component-controls/addon-catalog": "^3.14.6",
"@component-controls/addon-stats": "^3.14.6",
"@component-controls/cc-cli": "^3.14.6",
"@component-controls/gatsby-theme-stories": "^3.14.6",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/react": "^10.4.9",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@types/testing-library__jest-dom": "^5.9.5",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-jest": "^26.6.3",
"chart.js": "^2.7.2",
"del": "^5.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mdx": "^1.13.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby": "^3.9.0",
"grommet": "^2.15.0",
"grommet-icons": "^4.5.0",
"jest": "^26.4.2",
"jest-matchmedia-mock": "^1.1.0",
"jest-canvas-mock": "^2.3.1",
"rc-util": "^5.13.1",
"react": "^17.0.1",
"react-chartjs-2": "^2.7.4",
"react-dom": "^17.0.1",
"rollup": "^2.52.8",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"styled-components": "^5.1.1",
"ts-jest": "^26.5.5",
"typescript": "^4.0.0"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"isolatedModules": true
}
},
"setupFiles": [
"./src/chartjs/setupTests.ts"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
}
},
"resolutions": {
"mini-css-extract-plugin": "1.3.9"
}
}