-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "githistory",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint './**/*.{ts,tsx}' -c ./.eslintrc.js",
"lint:fix": "eslint './**/*.{ts,tsx}' --fix -c ./.eslintrc.js",
"format": "prettier --check './**/*.{ts,tsx}'",
"format:fix": "prettier --write './**/*.{ts,tsx}'"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/server": "11.11.0",
"@mantine/core": "7.2.2",
"@mantine/hooks": "7.2.2",
"@tabler/icons-react": "2.42.0",
"diff": "5.1.0",
"fast-memoize": "2.5.2",
"moment": "2.29.4",
"next": "14.0.3",
"octokit": "3.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "15.5.0"
},
"devDependencies": {
"@octokit/types": "12.3.0",
"@types/diff": "5.0.8",
"@types/node": "20.10.2",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/react-syntax-highlighter": "15.5.10",
"@typescript-eslint/eslint-plugin": "6.13.1",
"eslint": "8.55.0",
"eslint-config-next": "14.0.3",
"eslint-plugin-prettier": "5.0.1",
"postcss": "8.4.32",
"postcss-preset-mantine": "1.11.0",
"postcss-simple-vars": "7.0.1",
"prettier": "2.8.8",
"typescript": "5.3.2"
},
"resolutions": {
"semver": "7.5.4"
},
"main": "index.js",
"repository": "[email protected]:git1s/git-history.git",
"author": "nick.peterson <[email protected]>"
}