-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.34 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
79
80
81
82
83
84
85
86
87
{
"name": "react-mtg-playtester",
"version": "0.2.0",
"author": "Zeb Pykosz",
"license": "MIT",
"description": "React Magic: The Gathering drag and drop playtester",
"keywords": [
"react",
"mtg",
"dnd",
"react-dnd",
"dragndrop"
],
"bugs": {
"url": "https://github.com/fateseal/react-mtg-playtester/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fateseal/react-mtg-playtester.git"
},
"homepage": "https://react-mtg-playtester.netlify.com",
"files": [
"es",
"dist",
"umd"
],
"main": "./dist/index.js",
"module": "./es/index.js",
"scripts": {
"start": "npm run storybook",
"build": "NODE_ENV=production rollup -c",
"test": "jest",
"format": "prettier --write \"src/**/*.{css,js}\"",
"prepublishOnly": "npm test && npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react-dnd": "^7.0.2",
"react-dnd-html5-backend": "^7.0.2",
"react-modal": "^3.8.1",
"react-shortcuts": "^1.6.2"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.7",
"@storybook/addon-links": "^4.1.7",
"@storybook/addon-options": "^4.1.7",
"@storybook/addons": "^4.1.7",
"@storybook/react": "^4.1.7",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"jest": "^23.6.0",
"prettier": "^1.7.4",
"react": "^16.7.0",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"redux-devtools-extension": "^2.13.7",
"redux-thunk": "^2.3.0",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0"
},
"prettier": {
"semi": true,
"singleQuote": true
}
}