-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.83 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
{
"name": "doc2git",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"private": false,
"engines": {
"node": "^16.19.1",
"npm": "^8.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint:write": "next lint --cache --fix",
"lint": "next lint",
"prettier": "prettier -w 'src/**/*.{js,jsx,ts,tsx,css,md,json,yml,yaml,mdx}'",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.12",
"@types/gapi": "^0.0.44",
"@types/gapi.client": "^1.0.5",
"@types/gapi.client.drive": "^3.0.15",
"@types/google.accounts": "^0.0.6",
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"clsx": "^1.2.1",
"isomorphic-git": "^1.21.0",
"jszip": "^3.10.1",
"jwt-decode": "^3.1.2",
"memfs": "^3.4.13",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest-axe": "^3.5.5",
"@typescript-eslint/eslint-plugin": "5.54.0",
"eslint": "8.35.0",
"eslint-config-next": "13.2.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-testing-library": "5.7.2",
"eslint-plugin-unicorn": "44.0.2",
"jest": "^29.4.3",
"jest-axe": "^7.0.0",
"jest-environment-jsdom": "^29.4.3",
"msw": "^1.1.0",
"next-router-mock": "^0.9.2",
"prettier": "^2.8.4",
"whatwg-fetch": "^3.6.2"
}
}