forked from runtastic/react-hexagon-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "react-hexagon-grid",
"version": "1.0.0",
"description": "React Hexagon Grid",
"main": "lib/HexagonGrid.js",
"umd": "lib/HexagonGrid.js",
"scripts": {
"build": "npm run clean && npm run build:babel && npm run build:webpack",
"build:babel": "babel -d lib/ src/",
"build:demo": "cross-env NODE_ENV=production webpack -p --config webpack.config.demo.js",
"build:webpack": "cross-env NODE_ENV=production webpack -p --config webpack.config.prod.js",
"clean": "rimraf lib && rimraf umd",
"lint": "eslint .",
"postpublish": "npm run clean",
"prepublishOnly": "npm run build",
"demo": "node demo/devServer.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:runtastic/react-hexagon-grid.git"
},
"keywords": [
"react",
"react-component",
"hexagon",
"hexagon-grid",
"grid",
"svg"
],
"author": "Gabriele Vassallo <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^5.1.3",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.2",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hexagon": "^1.1.3",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.9",
"webpack-dev-middleware": "^3.0.0",
"webpack-hot-middleware": "^2.21.1"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
}
}