forked from robertluttig/geoquiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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": "create-react-express-jwt-server",
"version": "2.1.2",
"description": "Mern Demo",
"main": "server.js",
"engine": {
"node": "12.x"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"lint": "eslint . && cd client && npm run lint",
"lint:fix": "eslint --fix . && cd client && npm run lint:fix",
"test": "cd client && npm run test"
},
"author": "Travis Thompson, John Desrosiers",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
},
"dependencies": {
"bcrypt": "^5.0.0",
"bootstrap": "^4.5.2",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.3",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.13",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"react-bootstrap": "^1.3.0",
"sweetalert": "^2.1.2"
}
}