-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "upshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tests": "NODE_ENV=test node src/tests/*.test.js | tap-spec",
"nodemon": "nodemon src/index.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-12/upShop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-12/upShop/issues"
},
"homepage": "https://github.com/fac-12/upShop#readme",
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"nodemon": "^1.14.10",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"engines": {
"node":"9.2.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"env2": "^2.2.0",
"es6-promise": "^4.2.2",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"geolib": "^2.0.24",
"isomorphic-fetch": "^2.2.1",
"pg-promise": "^7.3.3",
"query-string": "^5.0.1",
"url": "^0.11.0"
}
}