-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.95 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "stackoverflow-readme-profile",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:johannchopin/stackoverflow-readme-stats.git",
"author": "johannchopin <johannchopin@pm.me>",
"license": "MIT",
"scripts": {
"start": "ts-node-dev -- src/api.ts",
"serve": "ts-node -- src/api.ts",
"docs:gen:template": "ts-node scripts/generateTemplatesDoc.ts",
"docs:gen:ranking-template": "ts-node scripts/generateRankingBadgesTemplatesDoc.ts",
"test": "jest --silent",
"test:types": "tsc --noEmit",
"test:manual": "ts-node-dev --files test/run.ts",
"lint": "eslint . --ext .js,.ts"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.11",
"@types/he": "^1.1.1",
"@types/html-minifier": "^4.0.0",
"@types/js-yaml": "^4.0.5",
"@types/mongodb": "^3.6.14",
"@types/node-fetch": "^2.5.10",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node-dev": "^2.0.0",
"typescript": "^4.2.4",
"vercel": "^22.0.1"
},
"dependencies": {
"@types/cors": "^2.8.12",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.2",
"handlebars": "^4.7.7",
"he": "^1.2.0",
"html-minifier": "^4.0.0",
"jimp": "^0.16.1",
"js-yaml": "^4.1.0",
"mongodb": "^3.6.8",
"node-fetch": "2.6.1",
"pg": "^8.7.1",
"swagger-ui-express": "^4.6.0",
"ts-node": "^10.9.1",
"typeorm": "^0.2.32"
}
}