-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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": "scraper",
"version": "0.0.1",
"description": "Earnings Scraper",
"main": "index.ts",
"scripts": {
"scraper": "ts-node --project scripts/tsconfig.json scripts/scraper.ts",
"addticker": "ts-node --project scripts/tsconfig.json scripts/addticker.ts",
"build": "webpack --config src/webpack.config.js --watch",
"bundle": "webpack --config src/webpack.config.js",
"start": "npm run build & http-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Benjamin Kaiser",
"license": "MIT",
"dependencies": {
"@nivo/line": "^0.62.0",
"@types/cheerio": "^0.22.21",
"@types/got": "^9.6.11",
"@types/jsonfile": "^6.0.0",
"@types/node": "^14.0.23",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"cached-got": "^1.0.1",
"cheerio": "^1.0.0-rc.3",
"got": "^11.5.1",
"http-server": "^0.12.3",
"jsonfile": "^6.0.1",
"moment": "^2.27.0",
"moment-timezone": "^0.5.33",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"devDependencies": {}
}