-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 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
{
"name": "library-cli",
"version": "0.1.7",
"description": "A CLI for building React libraries",
"main": "index.js",
"bin": {
"library": "index.js"
},
"scripts": {},
"author": "Brendan Carney <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^25.2.1",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-module-resolver": "^4.0.0",
"caporal": "^1.3.0",
"chalk": "^3.0.0",
"cross-spawn": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.2",
"read-pkg-up": "^5.0.0",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-size": "^0.2.2"
},
"devDependencies": {
"babel-plugin-transform-react-remove-prop-types": "^0.4.24"
}
}