-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "react-cli",
"version": "1.0.0",
"description": "Cli meant to simplify my workflow with react",
"main": "dist/index.js",
"author": "Kelvin CS",
"license": "MIT",
"private": false,
"dependencies": {
"commander": "^3.0.1",
"ramda": "^0.26.1"
},
"publishConfig": {
"access": "public"
},
"bin": {
"@kelvin1046/react-cli": "bin/react-cli.js",
"react-cli": "bin/react-cli.js"
},
"keywords": [
"cli",
"react-cli"
],
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@types/node": "^12.7.5",
"@types/ramda": "^0.26.22",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "3.0.1",
"prettier": "1.17.0"
},
"scripts": {
"build": "babel src -d dist --extensions '.ts'",
"start:dev": "npm run build && node bin/react-cli.js",
"start": "node bin/react-cli.js"
}
}