-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "heroku-express-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"axios": "^1.3.2",
"better-sqlite3": "^9.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"csv-parse": "^4.14.2",
"dotenv": "^8.2.0",
"download-file": "^0.1.5",
"express": "^4.17.1",
"extract-zip": "^2.0.1",
"fakeredis": "^2.0.0",
"fast-csv": "^4.3.6",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"object-sizeof": "^1.6.1",
"playwright": "^1.37.1",
"pretty-error": "^2.1.2",
"promise-redis": "0.0.5",
"promise.any": "^2.0.1",
"redis": "^3.0.2",
"serve-favicon": "^2.5.0",
"zodiac-signs": "^1.0.2"
},
"scripts": {
"start": "node index.js",
"prepare-db": "python3 json_create.py",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare-scraper": "playwright install --with-deps chromium",
"get-csv": "node get-csv.js"
},
"nodemonConfig": {
"ignore": [
"imdb_years.json"
]
},
"author": "Kevin Leutzinger",
"license": "ISC",
"engines": {
"node": "18.x"
}
}