-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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": "amazon-product-server",
"version": "1.0.0",
"description": "",
"main": "./server.js",
"scripts": {
"lint": "eslint .",
"precommit": "yarn lint",
"prepush": "yarn test",
"server:expose": "lt -s amazonapi -p 3000",
"start": "NODE_ENV=production node .",
"start:dev": "NODE_ENV=dev node .",
"test": "mocha",
"watch": "nodemon --watch server.js --watch src"
},
"keywords": [],
"author": "Marc Littlemore <marc.littlemore@gmail.com> (http://www.marclittlemore.com)",
"license": "MIT",
"dependencies": {
"apac": "^3.0.2",
"babel-register": "^6.26.0",
"compression": "^1.7.1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"lodash.get": "^4.4.2",
"morgan": "^1.9.0",
"node-cache": "^4.1.1",
"query-string": "^5.0.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "~12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "~2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"husky": "^0.14.3",
"localtunnel": "^1.8.3",
"mocha": "^4.0.1",
"node-mocks-http": "^1.6.6",
"nodemon": "^1.12.1",
"sinon": "^4.0.2",
"sinon-chai": "^2.14.0"
},
"repository": {
"type": "git",
"url": "git@github.com:MarcL/amazon-product-server.git"
}
}