-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 953 Bytes
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
{
"name": "@mouldjs/cli",
"version": "0.0.5",
"description": "Mould CLI",
"repository": "https://github.com/mouldjs/cli.git",
"license": "MIT",
"keywords": [
"mould",
"cli"
],
"bin": {
"mould": "bin/mould"
},
"dependencies": {
"apollo-server-express": "^2.17.0",
"arg": "^4.1.3",
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"esm": "^3.2.25",
"express": "^4.17.1",
"graphql-tag": "^2.11.0",
"graphql-tools": "^6.2.1"
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,css,json,md}": [
"prettier --write",
"git add"
]
}
}