-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.69 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
61
62
63
64
65
{
"name": "chartsql",
"version": "1.0.0",
"description": "图表数据查询接口服务,GranphQL做数据转换。",
"main": "./lib/server/index.js",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@graphql-codegen/typescript-document-nodes": "^1.13.1",
"apollo-boost": "^0.4.7",
"apollo-datasource-mongodb": "^0.2.5",
"apollo-datasource-rest": "^0.8.0",
"apollo-server": "^2.11.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"graphql-import-node": "0.0.4",
"i": "^0.3.6",
"mongodb": "^3.5.5",
"npm": "^6.14.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"html-webpack-plugin": "^4.0.4",
"lerna": "^3.20.2",
"nodemon": "^2.0.2",
"ts-graphql-plugin": "^1.10.2",
"ts-loader": "^6.2.2",
"ts-transform-graphql-tag": "^0.2.1",
"webpack": "^4.42.1",
"webpack-dev-middleware": "^3.7.2"
},
"scripts": {
"dev": "./node_modules/.bin/nodemon src/client/devServer.ts",
"debug": "node $NODE_DEBUG_OPTION --require ts-node/register src/client/devServer.ts",
"build": "./node_modules/.bin/tsc",
"start": ""
},
"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",
"execMap": {
"ts": "node --require ts-node/register"
},
"watch": [
"./src",
"./gqls"
],
"ext": "ts tsx gql js"
}
}