-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 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": "nebulo-scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -outDir dist",
"start": "node dist/index.js",
"start:dev": "ts-node src/index.ts",
"db:setup": "psql -f sql/init.sql nebulo_dev",
"db:reset": "psql -f sql/reset.sql nebulo_dev"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.2.3",
"bluebird": "^3.7.2",
"dotenv": "^8.2.0",
"ioredis": "^4.17.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"typescript": "^4.9.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/dotenv": "^8.2.0",
"@types/ioredis": "^4.17.4",
"@types/lodash": "^4.14.161",
"@types/node": "16",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "^2.1.2",
"ts-node": "^10.9.2"
}
}