forked from Jurredr/github-widgetbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "github-widgetbox",
"version": "1.0.0",
"description": "[✨] Beautiful, dynamic widgets for GitHub Readme pages. (Statistics, Languages, etc.)",
"main": "public/api/index.js",
"scripts": {
"dev": "nodemon api/index.ts",
"build": "rm -rf ./public && tsc",
"start": "npm run build && node public/api/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Jurredr/github-widgetbox/"
},
"keywords": [
"GitHub",
"Readme",
"Widget",
"Utility",
"Skills",
"Languages",
"Statistics"
],
"author": "Jurredr",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@types/express": "^4.17.12",
"@types/node": "^15.12.1",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"sass": "^1.34.1",
"sass-loader": "^12.0.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"github-username-regex": "^1.0.0",
"node-fetch": "^2.6.1"
}
}