This repository was archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.65 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.65 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
{
"name": "mindhive-backend",
"version": "1.0.0",
"description": "the backend of mindHIVE platform",
"scripts": {
"start": "nodemon -e js,graphql -x node src/index.js",
"dev": "nodemon -e js,graphql -x node --inspect src/index.js",
"test": "jest",
"deploy": "prisma1 deploy --env-file variables.env",
"playground": "graphql playground --dotenv variables.env",
"debug": "npm-run-all --parallel dev playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"babel-preset-env": "^1.7.0",
"bcryptjs": "2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "6.0.0",
"google-auth-library": "^6.0.5",
"graphql": "^0.13.2",
"graphql-cli": "^2.16.7",
"graphql-yoga": "1.16.2",
"jsonwebtoken": "8.3.0",
"nodemailer": "^4.6.8",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"postmark": "^2.5.4",
"prisma": "1.17.1",
"prisma-binding": "2.1.6",
"project-name-generator": "^2.1.9",
"slugify": "^1.4.0",
"stripe": "^6.12.1",
"uniqid": "^5.2.0"
},
"license": "MIT",
"repository": {},
"babel": {
"presets": [
"env"
]
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.19.1"
},
"eslintConfig": {
"extends": [
"wesbos"
]
}
}