-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "bingeomatic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"dependencies": {
"babel-core": "^6.26.3",
"bcrypt-nodejs": "^0.0.3",
"concurrently": "^7.6.0",
"connect-mongo": "^5.0.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-jwt": "^8.4.1",
"express-session": "^1.15.6",
"fs": "0.0.2",
"graphql": "^0.13.2",
"graphql-date": "^1.0.3",
"isomorphic-fetch": "^3.0.0",
"jwt-decode": "^2.2.0",
"moment": "^2.21.0",
"mongoose": "^5.0.12",
"passport": "^0.6.0",
"passport-local": "^1.0.0"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server.js",
"client": "node start-client.js",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"lint": "eslint .",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2"
},
"author": "",
"license": "ISC"
}