-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.03 KB
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
{
"name": "doodlemeeple-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/SimTimms/doodlemeeple-api.git",
"author": "Tim Simms <36262574+SimTimms@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist",
"start": "node dist/index.js",
"dev": "nodemon --exec npx babel-node src/index.js",
"prettier": "prettier --config ./.prettierrc --write \"**/*.js\"",
"pretest": "eslint --ignore-path .gitignore .",
"postinstall": "rm -rf dist && yarn run build",
"lint": "yarn prettier --write --check --config ./.prettierrc \"**/*.js\" && eslint --fix ./src",
"release": "release-it patch --no-npm.publish"
},
"devDependencies": {
"@babel/node": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.4.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^9.0.1",
"prettier": "^2.0.5"
},
"dependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@sendgrid/mail": "^6.5.2",
"apollo-engine": "^1.1.2",
"apollo-server-express": "^2.15.1",
"aws-sdk": "^2.625.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"filenamify": "^4.1.0",
"graphql": "^15.3.0",
"graphql-compose": "^7.18.1",
"graphql-compose-connection": "^6.2.1",
"graphql-compose-mongoose": "^7.4.0",
"graphql-middleware": "^4.0.2",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^6.0.12",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.21",
"mongoose-bcrypt": "^1.8.0",
"mongoose-timestamp": "^0.6.0",
"node-mailjet": "^3.3.1",
"nodemon": "^2.0.4",
"password-validator": "^5.0.3",
"pm2": "^4.2.3",
"stripe": "^8.64.0"
}
}