-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "nazareth-events",
"version": "1.0.0",
"description": "An app to see events going on in Nazareth",
"main": "index.js",
"scripts": {
"test": "node ./tests/test.js | tap-spec",
"start": "node src/start.js",
"dev": "nodemon src/start.js",
"lint": "./node_modules/.bin/eslint './+(src|tests|database|views)/**/*.js'"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/Naz_Community_attractions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/nazareth-events/issues"
},
"homepage": "https://github.com/FACN1/nazareth-events#readme",
"dependencies": {
"cookie-parser": "^1.4.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"dateformat": "^2.0.0",
"express": "^4.15.2",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.8",
"jsonwebtoken": "^7.4.1",
"pg": "^6.2.2"
},
"devDependencies": {
"env2": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}