-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
57 lines (57 loc) · 1.27 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "trivin",
"email": "calvin.nvqc@gmail.com",
"url": "https://calvinqc.com",
"version": "1.0.12",
"description": "A CLI to bootstrap any projects",
"main": "src/index.js",
"bin": {
"@calvinqc/trivin": "bin/trivin",
"vin": "bin/trivin",
"trivin": "bin/trivin"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": ""
},
"keywords": [
"cli",
"create-mern"
],
"files": [
"bin/",
"src/",
"templates/"
],
"homepage": "https://github.com/calvinqc/trivin",
"bugs": {
"url": "https://github.com/calvinqc/trivin/issues",
"email": "calvin.nvqc@gmail.com"
},
"author": "Calvin Nguyen",
"license": "ISC",
"dependencies": {
"arg": "^4.1.3",
"chalk": "^3.0.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"inquirer": "^7.1.0",
"listr": "^0.14.3",
"mkdirp": "^1.0.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
},
"devDependencies": {
"prettier": "^1.19.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0"
}
}