-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "Web-Crawler-Worker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "env-cmd -f config/dev.env jest --watch",
"start": "node src/index.js",
"dev": "env-cmd -f config/dev.env nodemon src/index.js",
"docker-dev": "nodemon src/index.js"
},
"jest": {
"testEnviorment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.888.0",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"node-html-parser": "^3.1.5",
"redis": "^3.1.1"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}