-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "react-flipcard3d",
"description": "3d animated flip card for react",
"keywords": [
"react",
"flipcard",
"animated",
"3d"
],
"version": "0.0.33",
"author": "",
"license": "MIT",
"private": false,
"homepage": "https://myleftshoe.github.io/react-flipcard3d",
"repository": {
"type": "git",
"url": "https://github.com/myleftshoe/react-flipcard3d"
},
"bugs": {
"url": "https://github.com/myleftshoe/react-flipcard3d/issues"
},
"main": "dist/index.js",
"module": "dist/index.js",
"babel": {
"presets": [
"react",
"env",
"stage-2"
]
},
"devDependencies": {
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"@material-ui/core": "^3.8.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"gh-pages": "^2.0.1",
"prop-types": "^15.6.2",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"react-scripts": "^2.1.3"
},
"peerDependencies": {
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2"
},
"scripts": {
"start": "react-scripts start",
"build": "set NODE_ENV=production && rm -rf dist && mkdir dist && npx babel src/FlipCard --out-dir dist --copy-files",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}