-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
38 lines (38 loc) · 1.34 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
{
"name": "morpheus-graphql",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:morpheusgraphql/morpheus-graphql.git",
"author": "Davit Nalchevanidze <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"check:spelling": "cspell --cache --no-progress '**/*.hs'",
"changelog": "ts-node scripts/changelog.ts",
"release": "ts-node scripts/release.ts",
"setup": "ts-node scripts/local.ts setup",
"format": "ts-node scripts/local.ts format",
"format:fix": "ts-node scripts/local.ts format --fix=true",
"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/glob": "^8.0.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.23",
"@types/ramda": "^0.28.4",
"cspell": "^6.31.1"
},
"dependencies": {
"@actions/core": "^1.9.1",
"axios": "^0.26.1",
"commander": "^9.1.0",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"ramda": "^0.28.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}