-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "gp_projectbernadette",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 0",
"test:coverage": "nyc --reporter=lcov --reporter=text-lcov tape src/test/*.test.js | tap-spec && open -a \"Google Chrome\" ./coverage/lcov-report/index.html",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/GP_ProjectBernadette.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/GP_ProjectBernadette/issues"
},
"homepage": "https://github.com/fac-13/GP_ProjectBernadette#readme",
"devDependencies": {
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"env2": "^2.2.2",
"express": "^4.16.3",
"nodemailer": "^4.6.6"
}
}