-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "@superfaceai/one-service",
"version": "3.0.3",
"description": "GraphQL service on top of OneSDK",
"repository": "https://github.com/superfaceai/one-service",
"author": "Superface Team <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"bin": {
"oneservice": "bin/cli"
},
"files": [
"bin/",
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.build.json --outDir dist",
"build:watch": "yarn build --watch",
"test": "jest",
"test:clean": "jest --clear-cache && jest",
"lint": "eslint src/",
"lint:fix": "yarn lint --fix",
"format": "prettier -c src/",
"format:fix": "prettier --write src/",
"start": "./bin/cli",
"start:dev": "nodemon --exec 'ts-node' src/cli.ts --graphiql --logs=trace",
"prepack": "yarn build"
},
"dependencies": {
"@superfaceai/ast": "^1.3.0",
"@superfaceai/one-sdk": "^2.4.1",
"@superfaceai/parser": "^2.1.0",
"commander": "^10.0.0",
"debug": "^4.3.4",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-http": "^1.16.0",
"pino-http": "^8.3.3"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}