-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 948 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
{
"name": "hackernews",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"lru-cache": "^6.0.0",
"mongodb": "^3.6.0",
"puppeteer": "^5.2.1",
"tslog": "^2.7.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/express-graphql": "^0.9.0",
"@types/graphql": "^14.5.0",
"@types/lru-cache": "^5.1.0",
"@types/mongodb": "^3.5.26",
"@types/puppeteer": "^3.0.1",
"concurrently": "^5.3.0",
"nodemon": "^2.0.4",
"typescript": "^3.9.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && concurrently \"tsc -w\" \"nodemon build/index.js\""
},
"author": "",
"license": "ISC"
}