-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.85 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
{
"name": "syllogio-api",
"version": "0.0.0",
"description": "A proposition API",
"main": "build/index.js",
"repository": "[email protected]:syllogio/syllogio-api.git",
"author": "Peter Sieg <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn gremlin-start ; yarn build ; yarn apollo-start",
"gremlin-start": "GREMLIN_PORT=3182 node ./scripts/gremlin.js start",
"gremlin-stop": "node ./scripts/gremlin.js stop",
"apollo-start": "yarn build ; GREMLIN_PORT=3182 node ./dist/server.js",
"copyTypeDefs": "cp ./src/graphql/typeDefs/*.graphql ./dist/graphql/typeDefs/",
"build": "tsc --declaration ; yarn copyTypeDefs",
"watch": "nodemon --watch src --ext ts --exec \"yarn start\"",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prettier": "prettier --write \"**/*.{js,ts}\"",
"lint": "yarn prettier ; yarn tslint",
"jest": "GREMLIN_PORT=3183 NODE_ENV=test jest --coverage --verbose",
"test": "yarn jest"
},
"dependencies": {
"apollo-server-express": "^2.9.4",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"graphql": "^14.5.7",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.5",
"gremlin": "^3.4.3",
"ramda": "^0.26.1"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/fs-extra": "^8.0.0",
"@types/graphql": "^14.2.3",
"@types/gremlin": "^3.4.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.7",
"@types/ramda": "^0.26.22",
"got": "^9.6.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": ">=9",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"semantic-release": "^15.13.21",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.3"
}
}