-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "gitlang",
"version": "4.0.0",
"description": "View language usage per repo or total by username",
"main": "client/src/index.ts",
"scripts": {
"build:dev": "NODE_ENV=development webpack --mode development -w",
"build:prod": "NODE_ENV=production webpack --mode production",
"fix": "eslint --fix '**/*'",
"start:client": "ts-node local/client.ts",
"start:server": "ts-node local/server.ts"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.650.0",
"@koa/cors": "^5.0.0",
"@koa/router": "^13.0.0",
"@octokit/rest": "^21.0.2",
"airbnb-browser-shims": "^3.3.0",
"axios": "^1.7.7",
"d3-interpolate": "^3.0.1",
"dotenv": "^16.4.5",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-static": "^5.0.0",
"nodemon": "^3.1.4",
"path": "^0.12.7",
"svelte": "^4.2.19",
"the-new-css-reset": "^1.11.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@mikey-pro/eslint-config-svelte": "^7.5.3",
"@types/dotenv-webpack": "^7.0.7",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-static": "^4.0.4",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^22.5.4",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"mikey-pro": "^7.5.3",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.45",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-loader": "^8.1.1",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"svelte-loader": "^3.2.3",
"svelte-preprocess": "^6.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"homepage": "https://github.com/chiefmikey/gitlang#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chiefmikey/gitlang.git"
},
"bugs": {
"url": "https://github.com/chiefmikey/gitlang/issues"
},
"license": "MIT",
"keywords": [
"gitlang",
"git",
"lang",
"github-languages",
"github",
"languages",
"language",
"user",
"profile",
"all",
"top",
"total"
],
"author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
"prettier": "@mikey-pro/prettier-config",
"eslintConfig": {
"extends": "@mikey-pro/eslint-config-svelte"
},
"stylelint": {
"extends": "@mikey-pro/stylelint-config"
}
}