forked from react-designer/react-designer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "react-designer",
"version": "1.1.1",
"description": "Easy to configure, lightweight, editable vector graphics in your react components.",
"main": "./lib/index.js",
"scripts": {
"start": "node server.js",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.js",
"prepare": "babel -d lib/ src/",
"build": "npm run prepare",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib"
},
"repository": {
"type": "git",
"url": "https://github.com/fatiherikli/react-designer"
},
"keywords": [
"react",
"reactjs"
],
"author": "Fatih Erikli <[email protected]> (http://fatiherikli.com)",
"license": "MIT",
"homepage": "https://github.com/react-designer/react-designer",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-webpack-loaders": "^0.9.0",
"css-loader": "^2.1.1",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"react": "^16.8.6",
"react-autocomplete": "1.8.1",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-dev-server": "^3.3.1"
},
"peerDependencies": {},
"dependencies": {
"classnames": "^2.2.6",
"lodash": ">=4.17.11",
"react-color": "^2.17.3",
"react-dropzone": "^10.2.1",
"react-hotkeys": "^1.1.4",
"react-portal": "^4.2.0",
"superagent": "*",
"webfontloader": "^1.6.28"
}
}