-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 839 Bytes
/
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
{
"name": "react-playing-card",
"version": "0.1.2",
"description": "A material design playing card for use in React.",
"main": "Card.js",
"scripts": {
"babel": "babel",
"build": "webpack",
"dev": "webpack -d --watch"
},
"keywords": [
"react",
"playing-card"
],
"author": {
"name": "Aryan Jabbari",
"email": "[email protected]",
"url": "http://aryanj-nyc.github.io"
},
"license": "ISC",
"dependencies": {
"react": "^15.5.4"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"style-loader": "^0.16.1",
"webpack": "^2.4.1"
}
}