-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 901 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
{
"name": "eventr",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build:cjs": "mkdirp dist/cjs && babel src/ -d dist/cjs --copy-files --ignore '*.test.js'",
"build:esm": "mkdirp dist/esm && babel src/ -d dist/esm --copy-files --no-babelrc --presets=react --plugins=transform-object-rest-spread --ignore '*.test.js'"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"styled-components": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-styled-components": "^1.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1"
}
}