-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
116 lines (116 loc) · 3.94 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": "@jotforminc/dnd-builder",
"version": "2.9.5",
"files": [
"lib"
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"sideEffects": false,
"dependencies": {
"@use-gesture/react": "10.2.24",
"classnames": "2.2.6",
"core-js": "3.9.0",
"dompurify": "2.2.8",
"fuse.js": "5.2.3",
"intersection-observer": "0.12.0",
"lodash.isequal": "4.5.0",
"memoize-one": "5.1.1",
"nanoid": "3.1.31",
"object-hash": "2.1.1",
"prop-types": "15.7.2",
"re-resizable": "6.9.0",
"react": "17.0.1",
"react-color": "2.19.3",
"react-dnd-cjs": "9.5.1",
"react-dnd-html5-backend-cjs": "9.5.1",
"react-dnd-multi-backend": "4.0.0",
"react-dnd-touch-backend-cjs": "9.5.1",
"react-dom": "17.0.1",
"react-modal": "3.12.1",
"react-quill": "1.3.5",
"react-sortable-hoc": "2.0.0",
"react-window": "1.8.6",
"react-zoom-pan-pinch": "3.0.1",
"recharts": "2.0.7",
"regenerator-runtime": "0.13.7"
},
"devDependencies": {
"@babel/core": "7.12.17",
"@babel/helper-builder-react-jsx-experimental": "7.12.11",
"@babel/plugin-proposal-export-default-from": "7.12.13",
"@babel/plugin-proposal-export-namespace-from": "7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.13",
"@babel/plugin-proposal-object-rest-spread": "7.12.13",
"@babel/plugin-proposal-optional-chaining": "7.12.17",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-react-jsx": "7.12.17",
"@babel/plugin-transform-react-jsx-development": "7.12.17",
"@babel/preset-env": "7.12.17",
"@babel/preset-react": "7.12.13",
"@commitlint/cli": "12.0.0",
"@commitlint/config-conventional": "12.0.0",
"@mdx-js/loader": "1.6.22",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "11.2.0",
"@storybook/addon-essentials": "6.1.18",
"@storybook/addon-links": "6.1.18",
"@storybook/addon-storysource": "6.1.18",
"@storybook/preset-scss": "1.0.3",
"@storybook/react": "6.1.18",
"@storybook/theming": "6.1.18",
"@svgr/rollup": "5.5.0",
"@svgr/webpack": "5.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.4.1",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"babel-plugin-dynamic-import-node": "2.3.3",
"camelcase": "6.2.0",
"css-loader": "5.0.2",
"deepmerge": "4.2.2",
"enzyme": "3.11.0",
"eslint": "7.20.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-sort-destructure-keys": "1.3.5",
"husky": "4.3.8",
"identity-obj-proxy": "3.0.0",
"is-published": "0.1.1",
"jest": "26.6.3",
"jest-canvas-mock": "2.3.1",
"lint-staged": "10.5.4",
"rollup": "2.39.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-static-import": "0.1.1",
"sass": "1.52.3",
"sass-loader": "10.1.1",
"standard-version": "9.3.0",
"style-loader": "2.0.0",
"stylelint": "13.10.0",
"stylelint-scss": "3.19.0"
},
"scripts": {
"build": "yarn build:lib",
"start": "yarn start:lib",
"lint": "yarn lint:js && yarn lint:style",
"test": "yarn test:unit",
"bootstrap": "[ -d lib ] || yarn build",
"clean": "rm -rf lib",
"prepublishOnly": "yarn lint && yarn test && yarn build:lib",
"build:lib": "rollup -c rollup.prod.config.js",
"start:lib": "rollup -c rollup.dev.config.js --watch",
"lint:js": "eslint src --ignore-pattern 'src/__tests__'",
"lint:style": "stylelint src/**/*.css src/**/*.scss",
"test:unit": "yarn jest [^\\.]+\\.spec.js --verbose --passWithNoTests",
"lint:js:fix": "eslint src --fix --ignore-pattern 'src/__tests__'",
"storybook": "start-storybook",
"lint-staged": "lint-staged",
"release": "standard-version"
}
}