forked from herbsjs/herbs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.25 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
{
"name": "@herbsjs/herbs-cli",
"version": "1.10.0",
"description": "herbs CLI",
"bin": {
"herbs": "bin/herbs"
},
"scripts": {
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "npx eslint \"**/*.{js,jsx}\" --quiet",
"lint:fix": "npx eslint \"**/*.{js,jsx}\" --fix",
"test": "mocha __tests__ --timeout 90000",
"semantic-release": "semantic-release",
"commit": "npm run lint && cz"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@herbsjs/herbs": "^1.3.1",
"@herbsjs/herbs2gql": "^2.0.0",
"@herbsjs/herbs2knex": "^1.1.2",
"@herbsjs/herbs2mongo": "^1.0.1",
"@herbsjs/herbs2rest": "^2.0.0",
"@herbsjs/herbsshelf": "^2.0.0",
"apollo-server": "^3.5.0",
"apollo-server-express": "^3.5.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"git-user-name": "^2.0.0",
"glob": "^7.1.7",
"gluegun": "^4.6.1",
"graphql": "^15.8.0",
"graphql-tools": "^8.2.0",
"inquirer": "^8.1.1",
"lodash.camelcase": "^4.3.0",
"lodash.startcase": "^4.4.0",
"mongodb": "^4.2.1",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"tedious": "^13.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"standard": {
"ignore": [
"__tests__/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/herbsjs/herbs-cli"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}