-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 955 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
{
"name": "friendfinder",
"version": "1.0.0",
"description": "This is a compatibility-based \"FriendFinder\" application --basically a dating app. This full-stack site will take in results your users' surveys, then compare their answers with those from other users. The app will then display the name and picture of the user with the best overall match.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yilinxu/FriendFinder.git"
},
"author": "Yilin Xu",
"license": "ISC",
"bugs": {
"url": "https://github.com/yilinxu/FriendFinder/issues"
},
"homepage": "https://github.com/yilinxu/FriendFinder#readme",
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"path": "^0.12.7",
"underscore": "^1.8.3"
},
"engines": {
"node": "v7.4.0"
}
}