This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 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
{
"name": "coderplex-backend",
"version": "1.0.0",
"main": "src/index.js",
"repository": "git@github.com:coderplex/coderplex-backend.git",
"license": "MIT",
"scripts": {
"start": "node ./bin/www",
"dev": "./node_modules/.bin/nodemon ./bin/www",
"makemigrations": "sequelize migration:create",
"migrate": "sequelize db:migrate",
"build": "mkdir dist && babel src -s -d dist",
"lint": "eslint --fix --ext js src"
},
"dependencies": {
"apollo-server": "^2.0.0",
"apollo-server-express": "^2.9.6",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"dotenv": "^6.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"graphql-relay": "^0.6.0",
"graphql-resolvers": "^0.3.3",
"graphql-scalars": "^1.0.2",
"graphql-sequelize": "^9.3.6",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.10",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-jwt": "^4.0.0",
"passport-linkedin": "^1.0.0",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.18.4",
"sequelize-cli": "^5.5.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.18.3",
"prettier": "^1.13.7"
}
}