-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "consistency-gpt",
"version": "0.1.0",
"private": true,
"scripts": {
"inspect": "yarn format && yarn lint --fix && yarn tsc && yarn audit",
"latest": "yarn logDate && yarn upgrade --latest && yarn audit && yarn inspect",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"logDate": "echo $(date +%y%m%d) > ./yarn-latest.record",
"dev": "next dev -p 3100",
"build": "next build",
"start": "next start -p 3100",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@mui/icons-material": "^6.1.10",
"@mui/lab": "^6.0.0-beta.18",
"@mui/material": "^6.1.10",
"@mui/x-date-pickers": "^7.23.0",
"@react-oauth/google": "^0.12.1",
"@types/country-flag-icons": "^1.2.2",
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.4.0",
"@types/node": "22.10.1",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.1",
"axios": "^1.7.9",
"country-flag-icons": "^1.5.13",
"deep-object-diff": "^1.1.9",
"eslint": "9.16.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"iso-639-1": "^3.1.3",
"js-cookie": "^3.0.5",
"luxon": "^3.5.0",
"next": "15.0.3",
"prettier": "^3.4.2",
"react": "18.3.1",
"react-activity-calendar": "^2.7.1",
"react-confetti": "^6.1.0",
"react-dom": "18.3.1",
"react-microsoft-login": "^2.0.1",
"react-use": "^17.5.1",
"recoil": "^0.7.7",
"typescript": "5.7.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}