-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
{
"name": "react-hex-engine",
"description": "Hexagon Map Editor and Game Engine",
"version": "1.1.1",
"main": "lib/index.js",
"author": "IcculusC",
"repository": "IcculusC/react-hex-engine",
"license": "MIT",
"scripts": {
"compile": "babel src/ --out-dir lib",
"bundle": "babel src/ --out-file dist/react-hexgrid.js",
"prepublish": "npm run test && npm run lint && npm run compile",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs",
"test": "node ./node_modules/.bin/jest --env=jsdom",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint ./src"
},
"peerDependencies": {
"prop-types": "^15.x",
"react": "^16.x"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"@storybook/addon-centered": "^3.4.11",
"@storybook/addon-knobs": "^4.0.0-rc.6",
"@storybook/addon-info": "^4.0.0-rc.6",
"@storybook/addon-notes": "^4.0.0-rc.6",
"@storybook/addon-options": "^4.0.0-rc.6",
"@storybook/addon-storysource": "^4.0.0-rc.6",
"@storybook/react": "^4.0.0-rc.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-app": "^3.0.4",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"jest": "^23.6.0",
"jest-html-reporter": "^2.4.2",
"prettier": "^1.14.3",
"prop-types": "^15.5.7-alpha.1",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-test-renderer": "^16.7.0-alpha.0",
"style-loader": "^0.23.1"
},
"dependencies": {
"classnames": "^2.2.5",
"memoize-one": "^4.0.2"
},
"files": [
"lib/**/*"
]
}