-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
46
47
48
49
50
51
52
53
{
"name": "allauda",
"version": "1.0.0",
"description": "PWA morning app",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "DATABASE_URL=mongodb://localhost/testalaudadb jest"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/allauda.git"
},
"keywords": [
"PWA",
"morning"
],
"author": "Katia, Giulia, Parissa, Ivana",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/allauda/issues"
},
"homepage": "https://github.com/fac-13/allauda#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"cron": "^1.3.0",
"env2": "^2.2.0",
"eslint": "^4.19.1",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"mongoose": "^5.1.0",
"newsapi": "^2.2.2",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"jest": "^22.4.3",
"pre-commit": "^1.2.2",
"supertest": "^3.0.0"
}
}