-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.21 KB
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
{
"name": "lap-student-tracker",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate-models": "openapi-io-ts -i models/openapi/models.swagger.yaml -o src/api && mv ./src/api/components/schemas/*.* ./models && rm -rf src",
"generate-api-doc": "next-swagger-doc-cli next-swagger-doc.json",
"test": "jest --runInBand",
"migrate": "node scripts/migrate.ts",
"migrate_staging": "node scripts/migrate-staging.ts",
"format": "prettier --write .",
"lint-fix": "(eslint --fix --cache --report-unused-disable-directives . || true) && prettier --write .",
"lint-check": "eslint --cache --report-unused-disable-directives . && prettier --check .",
"lint-test": "eslint --report-unused-disable-directives . && prettier --check ."
},
"dependencies": {
"@babel/preset-react": "^7.16.7",
"@date-io/luxon": "^2.16.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fullcalendar/common": "5.10.1",
"@fullcalendar/interaction": "5.10.1",
"@fullcalendar/react": "5.10.0",
"@fullcalendar/timegrid": "5.10.0",
"@mui/icons-material": "^5.8.2",
"@mui/lab": "^5.0.0-alpha.124",
"@mui/material": "^5.11.15",
"@mui/x-date-pickers": "^5.0.4",
"@next/env": "^12.1.6",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/luxon": "^2.0.9",
"@types/pg": "^8.6.3",
"@types/react-color": "^3.0.6",
"axios": "^0.26.0",
"base64-js": "^1.5.1",
"browser-image-compression": "^2.0.0",
"color-hash": "^2.0.1",
"dotenv": "^16.0.1",
"enhanced-resolve-jest": "^1.1.0",
"firebase": "^9.6.7",
"firebase-admin": "^11.4.1",
"fp-ts": "^2.11.8",
"http-status-codes": "^2.2.0",
"io-ts": "^2.2.16",
"io-ts-promise": "^2.0.2",
"jest-node-exports-resolver": "^1.1.6",
"luxon": "^2.5.2",
"moment": "^2.29.1",
"next": "^12.1.0",
"next-transpile-modules": "^9.0.0",
"pg": "^8.7.3",
"pg-camelcase": "^0.0.3",
"pino": "^8.7.0",
"pino-multi-stream": "^6.0.0",
"pino-pretty": "^9.1.1",
"postgres-migrations": "^5.3.0",
"react": "17.0.2",
"react-accessible-accordion": "^5.0.0",
"react-color": "^2.19.3",
"react-dom": "17.0.2",
"react-spinners": "^0.11.0",
"rrule": "^2.6.8",
"swr": "^1.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@openapi-io-ts/cli": "^0.4.1",
"@types/jest": "^27.4.0",
"@types/luxon": "^2.0.9",
"@types/node": "17.0.5",
"@types/react": "17.0.38",
"@types/react-datetime-picker": "^3.4.1",
"@types/react-time-picker": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"next-swagger-doc": "^0.3.6",
"node-mocks-http": "^1.11.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "4.5.4"
}
}