-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 903 Bytes
/
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
{
"name": "web-tycoon-tools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:docker": "docker-compose up -d"
},
"engines": {
"node": "10.x"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"puppeteer": "^1.13.0",
"qs": "^6.6.0",
"useragent-generator": "^1.1.1-amkt-22079-finish.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}