-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.03 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": "insta-video-scraper",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "SET NODE_ENV=production && node ./src/bin/www",
"dev": "SET NODE_ENV=development && nodemon ./src/bin/www",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"helmet": "^3.23.3",
"http-errors": "^1.8.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"puppeteer": "^21.3.6"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.7.0",
"nodemon": "^2.0.12",
"supertest": "^3.4.2"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"ignore": [
"*.test.js"
]
}
}