forked from xusai2014/ChartsQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "chartsql",
"version": "1.0.0",
"description": "图表数据查询接口服务,GranphQL做数据转换。",
"main": "./lib/index.js",
"dependencies": {
"@graphql-codegen/typescript-document-nodes": "^1.13.1",
"apollo-datasource-rest": "^0.8.0",
"apollo-server": "^2.11.0",
"graphql": "^14.6.0",
"graphql-import-node": "0.0.4",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"nodemon": "^2.0.2",
"ts-graphql-plugin": "^1.10.2",
"ts-transform-graphql-tag": "^0.2.1"
},
"scripts": {
"dev": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/ts-node src/index.ts",
"debug": "./node_modules/.bin/ts-node $NODE_DEBUG_OPTION src/index.ts",
"build": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xusai2014/ChartsQL.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xusai2014/ChartsQL/issues"
},
"homepage": "https://github.com/xusai2014/ChartsQL#readme",
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "2500",
"watch": [
"./src",
"./gqls"
],
"ext": "ts gql js"
}
}