-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
118 lines (118 loc) · 2.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "mern-cli",
"version": "2.5.0",
"description": "A cli for generating MERN boilerplate",
"main": "index.js",
"watch": {
"compile": "src/**/*.js"
},
"scripts": {
"compile": "babel --presets env,stage-0 -d lib/ src/",
"lint": "eslint . --ignore-path .gitignore",
"lint:staged": "eslint-staged",
"prepublish": "npm run compile",
"pretest": "npm run lint",
"test": "ava tests/*.js",
"watch": "npm-watch"
},
"pre-commit": "lint:staged && npm run test",
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"shelljs": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"import/no-unresolved": 2,
"global-require": 0,
"comma-dangle": [
2,
"always-multiline"
],
"indent": [
2,
4,
{
"SwitchCase": 1
}
],
"max-len": 0,
"no-console": 0,
"prefer-template": 2,
"no-use-before-define": 0,
"newline-per-chained-call": 0,
"import/no-dynamic-require": 0,
"prefer-destructuring": [
"error",
{
"array": false,
"object": true
},
{
"enforceForRenamedProperties": false
}
],
"arrow-body-style": [
2,
"as-needed"
]
}
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hashnode/mern-cli.git"
},
"keywords": [
"cli",
"mern",
"isomorphic",
"boilerplate",
"react",
"redux",
"react-router",
"express",
"mongo"
],
"author": "Mayank Chandola <imayankchd@gmail.com>, Prashant Abhishek <prashant.abhishek7g@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hashnode/mern-cli/issues"
},
"homepage": "https://github.com/Hashnode/mern-cli#readme",
"bin": {
"mern": "./bin/mern.js",
"merng": "./bin/merng.js"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"commander": "^2.15.1",
"ejs": "^2.6.1",
"elegant-spinner": "^1.0.1",
"log-update": "^2.3.0",
"shelljs": "^0.8.2",
"writefile": "^0.2.8"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"lint-staged": "^7.1.3",
"npm-watch": "^0.3.0",
"pify": "^3.0.0"
}
}