-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 994 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": "hypebeast-monitor",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"engines": {
"node": "12.14.0"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"start": "node ./dist/main.js",
"start:dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elias-garcia/hypebeast-monitor.git"
},
"author": "elias-garcia",
"license": "ISC",
"bugs": {
"url": "https://github.com/elias-garcia/hypebeast-monitor/issues"
},
"homepage": "https://github.com/elias-garcia/hypebeast-monitor#readme",
"dependencies": {
"axios": "^0.19.1",
"jsonous": "^5.0.1",
"mongoose": "^5.8.4",
"pino": "^5.15.0",
"pino-pretty": "^3.5.0",
"puppeteer": "^2.0.0"
},
"devDependencies": {
"@types/mongoose": "^5.5.38",
"@types/pino": "^5.15.1",
"@types/puppeteer": "^2.0.0",
"nodemon": "^2.0.2",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
}
}