-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
54
55
{
"name": "search-content-generator",
"version": "1.0.0",
"description": "service that generates html for the search crawlers based on requested url",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"precommit": "lint-staged",
"test": "cross-env S3_ACCESS_KEY_ID=accessKey S3_SECRET_ACCESS_KEY=accessSecret S3_CACHE_BUCKET_NAME=bucketName node node_modules/mocha/bin/mocha test/**/*.spec.js",
"lint": "eslint -c .eslintrc ./",
"lint:fix": "npm run lint -- --fix"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.json": [
"jsonlint-cli"
]
},
"keywords": [
"easygenerator",
"search"
],
"author": "Vasyl Ivanchuk",
"license": "ISC",
"dependencies": {
"cors": "^2.8.4",
"ejs": "^2.5.8",
"express": "^4.16.3",
"knox": "^0.9.2",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"serverless-http": "^1.5.5"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-easygenerator": "^1.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jsonlint-cli": "^1.0.1",
"lint-staged": "^7.0.4",
"mocha": "^5.1.0",
"node-mocks-http": "^1.5.8",
"prettier": "^1.12.0",
"serverless-prune-plugin": "^1.3.0",
"should": "^13.2.1",
"sinon": "^4.5.0"
}
}