-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"proxy": "http://localhost:8080",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run mocha",
"mocha": "mocha --recursive",
"test:dev": "nodemon --exec 'npm run mocha'",
"test:e2e:watch": "nodemon --exec 'npm run mocha'",
"test:unit": "nodemon --exec 'npm run mocha -- ./test/unit'",
"test:e2e": "nodemon --exec 'npm run mocha -- ./test/e2e'",
"start": "node server.js",
"start:dev": "nodemon server.js"
},
"engines": {
"node": "8.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/top-hat-1/server.git"
},
"author": "Charlie Heiner, Charly Welch, Jack Lomax, Jacob Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/top-hat-1/server/issues"
},
"homepage": "https://github.com/top-hat-1/server#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"mocha": "^5.1.0",
"nodemon": "^1.17.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.0.15",
"morgan": "^1.9.0"
}
}