-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "react-radial-menu",
"version": "1.0.0",
"description": "ReactJS circular menu",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "echo \"No test specified\" && exit 0",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "yarn transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "yarn build && yarn deploy"
},
"dependencies": {
"eslint-plugin-import": "^2.16.0",
"jquery": "^3.3.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"velocity-animate": "^1.5.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"react-hot-loader": "^4.7.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"keywords": [
"circular",
"menu",
"react",
"reactjs",
"velocityjs",
"react-component"
],
"licenses": [
{
"name": "MIT",
"url": "https://github.com/Antho2407/react-radial-menu/blob/master/LICENSE"
}
],
"bugs": {
"mail": "[email protected]"
},
"author": "Anthony Da Mota",
"browserify": {
"transform": [
"reactify"
]
}
}