-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
27 lines (27 loc) · 975 Bytes
/
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
{
"name": "morpheus-graphql",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:morpheusgraphql/morpheus-graphql.git",
"author": "Davit Nalchevanidze <d.nalchevanidze@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"check:spelling": "cspell --cache --no-progress '**/*.hs'",
"release": "ts-node scripts/release.ts",
"code-gen": "morpheus build morpheus-graphql-server/test examples/code-gen examples/code-gen-docs",
"code-gen:check": "morpheus check morpheus-graphql-server/test examples/code-gen examples/code-gen-docs",
"lint": "curl -sSL https://raw.github.com/ndmitchell/hlint/master/misc/run.sh | sh -s .",
"test:server": "stack test --fast morpheus-graphql-server --ta"
},
"devDependencies": {
"@types/node": "^17.0.23",
"cspell": "^6.31.1"
},
"dependencies": {
"commander": "^9.1.0",
"gh-rel-easy": "^0.15.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}