-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "my_friend_oni",
"version": "1.0.0",
"description": "Japanese Word Quiz using M.E.R.N",
"main": "server.js",
"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",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ryuku72/MyFriendOni.git"
},
"keywords": [
"Japanese",
"Quiz",
"MERN",
"React",
"Express",
"MongoDB",
"Node.JS",
"Hooks"
],
"author": "Joshua K Bader",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ryuku72/MyFriendOni/issues"
},
"homepage": "https://github.com/Ryuku72/MyFriendOni#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"mongodb": "^3.5.9",
"mongoose": "^5.9.24",
"mongoose-int32": "^0.4.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"validator": "^13.1.1"
},
"devDependencies": {}
}