-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "dev-eye",
"version": "1.0.18",
"description": "a command-line and a web-based visualization tool that computes and visualizes the bus factor of a repository",
"author": "khazifire",
"license": "ISC",
"main": "./src/index.js",
"bin": "./src/index.js",
"repository": "https://github.com/MUICT-SERU/dev-eye",
"files": [
"LICENSE",
"README.md",
"index.js",
"public/",
".next",
"src/cli/lib/",
"CHANGELOG.md"
],
"scripts": {
"dev": "next dev",
"build": "npm run format && next build",
"start": "next start",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 1",
"build-cli": "tsup ./src/index.js",
"format": "prettier --write ./src",
"release": "npm run build && npm version patch && npm run prepack && npm publish",
"prepack": "rm -rf .next/cache"
},
"type": "module",
"keywords": [],
"devDependencies": {
"prettier-plugin-tailwindcss": "^0.5.11",
"tsup": "^7.2.0",
"prettier": "^3.2.5",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"@tremor/react": "^3.16.2",
"chart.js": "^4.4.1",
"os": "^0.1.2",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18"
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"http-server": "^14.1.1",
"kill-port": "^2.0.1",
"next": "^14.0.4",
"open": "^10.0.3",
"path": "^0.12.7",
"readline": "^1.3.0",
"shelljs": "^0.8.5",
"simple-git": "^3.22.0",
"url": "^0.11.3",
"ws": "^8.16.0",
"yargs": "^16.2.0"
}
}