forked from git-truck/git-truck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.49 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "git-truck-beta",
"version": "0.0.41",
"private": false,
"description": "Visualizing a Git repository",
"license": "MIT",
"main": "./cli.js",
"bin": "./cli.js",
"files": [
"LICENSE",
"README.md",
"build/",
"public/",
"cli.js"
],
"scripts": {
"test": "jest --coverage",
"build": "remix build && npm run build-cli",
"build-cli": "node ./scripts/build-cli.js",
"dev": "remix dev",
"watch": "remix watch",
"start": "remix-serve build",
"clean": "rimraf -rf build public/build .cache .temp",
"tsc": "tsc",
"pub-pre": "npm version prerelease && npm publish --tag next",
"pub-exp": "node ./scripts/publish-experimental.js",
"prepublishOnly": "npm run clean && npm run build",
"format": "eslint --cache --fix {src,scripts}/**/*.{ts,tsx,js,mjs} && prettier --loglevel warn --write {src,scripts}/**/*.{ts,tsx,js,mjs}",
"lint": "eslint --cache --fix {src,scripts}/**/*.{ts,tsx,js,mjs}"
},
"devDependencies": {
"@react-spring/web": "^9.7.1",
"@remix-run/dev": "^1.13.0",
"@remix-run/eslint-config": "^1.13.0",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.13.0",
"@remix-run/serve": "^1.13.0",
"@styled-icons/material": "^10.47.0",
"@styled-icons/material-outlined": "^10.47.0",
"@styled-icons/octicons": "^10.47.0",
"@types/byte-size": "^8.1.0",
"@types/d3-hierarchy": "^3.1.2",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-datepicker": "^4.10.0",
"@types/react-dom": "^18.0.11",
"@types/semver": "^7.3.13",
"@types/styled-components": "^5.1.26",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"auto-text-size": "^0.2.2",
"byte-size": "^8.1.0",
"cross-env": "^7.0.3",
"d3-hierarchy": "^3.1.2",
"distinct-colors": "^3.0.0",
"dotenv": "^16.0.3",
"esbuild": "^0.15.18",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"express-serve-static-core": "^0.1.1",
"get-port": "^6.1.2",
"github-colors": "github:ozh/github-colors",
"gitignore-parser": "^0.0.2",
"got": "^11.8.3",
"husky": "^8.0.3",
"ignore": "^5.2.4",
"is-binary-path": "^2.1.0",
"jest": "^29.4.3",
"lang-map": "^0.4.0",
"latest-version": "^7.0.0",
"lint-staged": "^13.1.2",
"nanospinner": "^1.1.0",
"open": "^8.4.2",
"react": "^18.2.0",
"react-datepicker": "^4.10.0",
"react-dom": "^18.2.0",
"react-konami-code": "^2.3.0",
"react-use": "^17.4.0",
"react-use-size": "^3.0.1",
"remix-typedjson": "^0.1.7",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"styled-components": "^5.3.6",
"tiny-invariant": "^1.3.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"yargs": "^17.7.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"dotenv/config"
],
"roots": [
"<rootDir>/src/"
]
},
"prettier": {
"semi": false,
"printWidth": 120
},
"lint-staged": {
"{src,scripts}/**/*.{ts,tsx,js,mjs}": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": ">=16.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawidwoz/git-truck.git"
},
"bugs": {
"url": "https://github.com/dawidwoz/git-truck/issues"
},
"homepage": "https://github.com/dawidwoz/git-truck#readme"
}