-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 869 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 869 Bytes
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
{
"name": "peach",
"version": "1.0.0",
"description": "A sweet GraphQL server for a sweet hackathon registration system.",
"main": "index.js",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.1.0",
"axios": "^0.18.0",
"backpack-core": "^0.7.0",
"banana-mail": "^1.0.0",
"bcrypt": "^3.0.2",
"dotenv": "^6.1.0",
"eslint-config-airbnb": "^17.1.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"graphql": "^14.0.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.13"
},
"scripts": {
"deploy": "now --public && now alias",
"start": "node ./build/main.js",
"build": "backpack build",
"dev": "backpack dev"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
}
}