-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.32 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
{
"name": "sketchbox",
"version": "1.0.0",
"description": "",
"keywords": [
"editor"
],
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"module": "dist/main.es.js",
"umd": "dist/sketchbox.js",
"umdMin": "dist/sketchbox.min.js",
"umdGlobals": {
"react": "React",
"slate": "Slate"
},
"license": "MIT",
"author": {
"name": "Byeonggeol Ha",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/baechoofarm/sketchbox.git"
},
"bugs": {
"url": "https://github.com/baechoofarm/sketchbox/issues",
"email": "[email protected]"
},
"scripts": {
"build": "rollup --c rollup.config.js",
"eslint": "eslint .",
"eslint-quiet-fix": "eslint . --quiet --fix",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/helper-call-delegate": "^7.7.4",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/builder-webpack5": "^6.3.7",
"@storybook/manager-webpack5": "^6.3.7",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.7",
"@types/dateformat": "^3.0.1",
"@types/is-url": "^1.2.30",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"antd": "^4.16.13",
"babel-loader": "^8.2.2",
"classnames": "^2.3.1",
"css-loader": "^6.2.0",
"dateformat": "^4.5.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"image-extensions": "^1.1.0",
"is-url": "^1.2.4",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-overlay-layer": "0.2.0-alpha",
"rollup": "^2.56.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.38.1",
"sass-loader": "^12.1.0",
"slate": "0.65.3",
"slate-history": "0.65.3",
"slate-hyperscript": "^0.62.0",
"slate-react": "0.65.3",
"style-loader": "^3.2.1",
"tslib": "^2.3.1",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"@ant-design/icons": "^4.6.4",
"keycode": "^2.2.0"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}