-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.54 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "gql-server",
"description": "EXLskills GraphQL NodeJS API Server",
"repository": "https://github.com/exlskills/gql-server",
"version": "0.1.0",
"scripts": {
"start": "npm run start:dev",
"start:production": "better-npm-run start-prod",
"start:dev": "better-npm-run start-dev",
"update-schema": "babel-node ./scripts/updateSchema.js",
"prettier": "prettier --write \"{*.js,!(node*)**/*.js}\"",
"build": "babel src -d build --copy-files && npm run build:copy",
"build:copy": "copyfiles package.json ./build",
"lint-fix": "eslint --fix .",
"docker:build": "docker build -t exlskills/gql-server:latest .",
"docker:push": "docker push exlskills/gql-server:latest"
},
"betterScripts": {
"start-prod": {
"command": "node build/server.js",
"env": {
"NODE_ENV": "production",
"PORT": 8080
}
},
"start-dev": {
"command": "nodemon -w src/server.js --exec \"babel-node src/server.js\"",
"env": {
"NODE_ENV": "development",
"PORT": 8080
}
}
},
"dependencies": {
"@octokit/rest": "^16.16.4",
"agenda": "^2.0.2",
"app-root-path": "^2.1.0",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-plugin-relay": "~1.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.26.0",
"better-npm-run": "^0.1.0",
"body-parser": "^1.18.3",
"chokidar": "^2.1.0",
"classnames": "2.2.5",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"diff-match-patch": "^1.0.0",
"dotenv": "^6.0.0",
"elasticsearch": "^15.2.0",
"express": "^4.16.3",
"express-graphql": "^0.6.4",
"express-healthcheck": "^0.1.0",
"flatted": "^1.0.2",
"fs-extra": "^7.0.0",
"graphql": "^0.10.3",
"graphql-iso-date": "^3.2.0",
"graphql-relay": "^0.5.1",
"graphql-relay-connection": "0.0.4",
"graphql-server-express": "^1.0.0",
"js-yaml": "^3.12.0",
"jsonwebtoken": "^8.3.0",
"lru-cache": "^5.1.1",
"moment": "^2.18.1",
"moment-timezone": "^0.5.21",
"mongoose": "^5.3.1",
"verify-github-webhook": "^1.0.1",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"copyfiles": "^1.2.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.1.2",
"nodemon": "^1.18.10",
"prettier": "^1.14.2"
}
}