-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.42 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
{
"name": "@webkom/lego-editor",
"version": "1.2.0",
"description": "A React editor written in TS with slate.js for lego-webapp",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "yarn build",
"build": "yarn tsc && rsync -a --include '*/' --include '*.css' --exclude '*' ./src/ ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.{js,ts,tsx}' && prettier 'src/**' --list-different",
"prettier": "prettier 'src/**' --write",
"dev:build": "webpack --mode development",
"dev": "webpack-dev-server --config ./example/webpack/webpack.config.js --open --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webkom/lego-editor.git"
},
"author": "Abakus webkom",
"license": "MIT",
"bugs": {
"url": "https://github.com/webkom/lego-editor/issues"
},
"homepage": "https://github.com/webkom/lego-editor#readme",
"dependencies": {
"classnames": "^2.2.6",
"escape-html": "^1.0.3",
"is-url": "^1.2.4",
"lodash": "^4.17.15",
"react-dropzone": "^11.0.1",
"react-image-crop": "^8.4.2",
"react-modal": "^3.11.2",
"slate": "^0.56.0",
"slate-history": "^0.56.0",
"slate-hyperscript": "^0.56.0",
"slate-react": "^0.56.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@types/classnames": "^2.2.8",
"@types/escape-html": "^1.0.0",
"@types/is-hotkey": "^0.1.1",
"@types/is-url": "^1.2.28",
"@types/lodash": "^4.14.137",
"@types/react": "^16.8.14",
"@types/react-image-crop": "^8.1.2",
"@types/react-modal": "^3.10.6",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.8.6",
"source-map-loader": "^1.0.1",
"style-loader": "^1.0.1",
"typescript": "^3.4.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"singleQuote": true
}
}