-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
73 lines (73 loc) · 2.18 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
66
67
68
69
70
71
72
73
{
"name": "@graphite/server",
"version": "0.10.14",
"description": "GraphiteJS Framework",
"main": "dist/index.js",
"scripts": {
"lint": "eslint -f table ./src/** ./test/**",
"lint:fix": "eslint --fix ./src/** ./test/** ./examples/**",
"test": "babel-node ./test",
"test:unit": "babel-node ./test/unit",
"test:integration": "",
"test:functional": "babel-node ./test/functional",
"coverage": "nyc --report-dir ./.coverage npm run test",
"coverage:unit": "nyc --report-dir ./.coverage-unit npm run test:unit",
"coverage:integration": "",
"coverage:functional": "nyc --report-dir ./.coverage-functional npm run test:functional",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile",
"codecov": "codecov",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"start:example": "babel-node ./examples/TodoList"
},
"author": "Walter Zalazar",
"license": "MIT",
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.0",
"@babel/node": "7.10.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.11.0",
"@babel/register": "7.10.5",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.7",
"@semantic-release/npm": "7.0.5",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link-ws": "1.0.20",
"babel-eslint": "10.1.0",
"codecov": "3.7.2",
"eslint": "5.16.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.3",
"isomorphic-fetch": "2.2.1",
"lint-staged": "10.2.11",
"mongodb": "3.6.0",
"mongodb-memory-server": "6.6.3",
"nyc": "15.1.0",
"prettier": "1.19.1",
"riteway": "6.1.1",
"semantic-release": "17.1.1",
"subscriptions-transport-ws": "0.9.17",
"travis-deploy-once": "5.0.11",
"ws": "6.2.1"
},
"dependencies": {
"apollo-server": "2.16.1",
"apollo-server-express": "2.16.1",
"express": "4.17.1",
"graphql": "14.7.0",
"pino": "5.17.0",
"pino-pretty": "2.6.1"
},
"publishConfig": {
"access": "public"
}
}