-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "react-package-rollup",
"version": "0.0.1",
"description": "Boilerplate for React package bundled with Rollup",
"scripts": {
"prepublishOnly": "npm run release",
"release": "npm run build:dev && npm run build:prod",
"build:dev": "NODE_ENV=development rollup -c",
"build:prod": "NODE_ENV=production rollup -c",
"dev": "npm run build:dev -- --watch"
},
"main": "index.js",
"files": [
"lib",
"dev.js",
"prod.js"
],
"repository": "git+https://github.com/Tomekmularczyk/react-package-rollup.git",
"keywords": [
"rollup",
"react",
"package",
"npm",
"module",
"es6"
],
"author": "Tomasz Mularczyk",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"react": "^16.3.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0"
},
"peerDependencies": {
"react": ">= 16.3.x"
}
}