-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.59 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.59 KB
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
{
"name": "@the-deep/deep-ui",
"version": "2.0.7-beta.2",
"description": "React component library by Deep",
"files": [
"/build"
],
"sideEffects": [
"src/styles.css"
],
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"typings": "build/esm/index.d.ts",
"style": "build/esm/index.css",
"scripts": {
"prepare": "install-peers",
"build": "rollup -c && tsc --project tsconfig-typings.json",
"prepack": "yarn build",
"watch": "rollup -c -w",
"test": "jest",
"test:coverage": "jest --coverage",
"typecheck": "tsc",
"lint": "eslint 'src/**/*.[tj]s?(x)'",
"lint:stories": "eslint 'storybook/stories/**/*.[tj]s?(x)'",
"css-lint:stories": "stylelint 'storybook/**/*.css' --config .stylelintrc.json",
"css-lint": "stylelint 'src/**/*.css' --config .stylelintrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-deep/deep-ui.git"
},
"author": "tnagorra",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-deep/deep-ui/issues"
},
"homepage": "https://github.com/the-deep/deep-ui#readme",
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^4.3.1"
},
"dependencies": {
"@tanem/svg-injector": "^10.1.14",
"@togglecorp/fujs": "^1.9.3",
"@types/jest": "^27.5.1",
"@types/react-color": "^3.0.6",
"@types/requestidlecallback": "^0.3.4",
"babel-jest": "^28.1.0",
"d3-shape": "^3.0.1",
"jest": "^28.1.0",
"react-color": "^2.19.3",
"react-icons": "^4.3.1",
"react-zoom-pan-pinch": "^2.1.3",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@types/d3-shape": "^3.0.2",
"@types/node": "^17.0.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-polyfill-corejs3": "^0.5.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-postcss-modules": "^2.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"install-peers-cli": "^2.2.0",
"postcss": "^8.4.5",
"postcss-nested": "^5.0.6",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.2.0",
"rollup": "^2.62.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-visualizer": "^5.5.2",
"stylelint": "^14.2.0",
"stylelint-config-recommended": "^6.0.0",
"typescript": "^4.5.4"
}
}