-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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": "city-guide",
"version": "1.0.0",
"description": "Our app allows the user to share and gain information about the different events and locations",
"engines": {
"node": "6.9.2"
},
"main": "app/src/server.js",
"scripts": {
"start": "node app/src/start_server.js",
"test": "node app/test/test.js | tap-spec",
"cover": "./node_modules/.bin/istanbul cover app/test/test.js",
"dev": "./node_modules/.bin/nodemon app/src/start_server.js",
"lint": "./node_modules/.bin/eslint './app/**/*.js'"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/city-guide.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/city-guide/issues"
},
"homepage": "https://github.com/FACN1/city-guide#readme",
"dependencies": {
"body-parser": "^1.17.1",
"env2": "^2.1.1",
"express": "^4.15.2",
"leaflet": "^1.0.3",
"pg": "^6.1.5",
"aws-sdk": "2.x"
},
"devDependencies": {
"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",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}