-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 815 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 815 Bytes
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
{
"name": "task-logger",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"dayjs": "^1.10.8",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sqlite": "^4.0.25",
"sqlite3": "^4.2.0",
"swr": "^1.2.2"
},
"devDependencies": {
"@testing-library/react": "^12.1.4",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/sqlite3": "^3.1.8",
"cypress": "^9.5.1",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"jest": "^27.5.1",
"typescript": "^4.6.2"
}
}