-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
95 lines (95 loc) · 2.31 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
{
"name": "mevn-cli",
"version": "1.8.3",
"description": "Light Speed setup for MEVN stack based apps.",
"main": "./bin/mevn.js",
"files": [
"bin",
"lib"
],
"bin": {
"mevn": "bin/mevn.js"
},
"scripts": {
"build": "gulp",
"build:watch": "babel --watch src --out-dir lib --copy-files --include-dotfiles",
"lint": "eslint ./src __e2e__ jest",
"lint:fix": "eslint --fix ./src __e2e__ jest",
"pretest": "npm run lint",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"postinstall": "opencollective-postinstall || true"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/*": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/madlabsinc/mevn-cli.git"
},
"keywords": [
"node.js",
"commander.js",
"inquirer.js",
"shell.js",
"cli",
"mevn",
"vue",
"express",
"mongodb"
],
"author": "James George <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/madlabsinc/mevn-cli/issues"
},
"homepage": "https://github.com/madlabsinc/mevn-cli#readme",
"dependencies": {
"@babel/polyfill": "^7.10.4",
"chalk": "^2.4.2",
"commander": "^6.2.1",
"envinfo": "^7.7.3",
"execa": "^4.0.3",
"inquirer": "^6.5.2",
"leven": "^3.1.0",
"node-banner": "^1.4.0",
"opencollective-postinstall": "^2.0.3",
"ora": "^3.4.0",
"update-notifier": "^3.0.1",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.10.5",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.10.4",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"babel-jest": "^24.9.0",
"cli-prompts-test": "^0.3.0",
"del": "^4.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"gulp": "^4.0.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.2.1",
"prettier": "^2.2.1",
"vuepress": "^1.8.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/mevn-cli"
}
}