-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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": "ezinvite",
"version": "1.0.0",
"description": "ezInvite is an app to easily invite people to you'r event.",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"debug": "ndb src/server.js"
},
"author": "Kai Roth",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^1.4.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.23.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^1.3.2",
"express-rate-limit": "^5.2.3",
"graphql": "^14.7.0",
"graphql-playground-middleware-express": "^1.7.22",
"graphql-tag": "^2.11.0",
"graphql-tools": "^4.0.8",
"graphql-upload": "^10.0.0",
"helmet": "^3.23.3",
"lodash": "^4.17.20",
"mongoose": "^5.11.3",
"morgan": "^1.10.0",
"slugify": "^1.4.6",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"ndb": "^1.1.5",
"nodemon": "^1.19.4",
"prettier": "^1.19.1"
},
"engines": {
"node": "^12"
}
}