-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "countdown-generator",
"private": false,
"version": "0.2.0",
"license": "GPL-3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ."
},
"dependencies": {
"@fontsource/roboto": "^4.5.1",
"@mantine/core": "^3.4.3",
"@mantine/dates": "^3.4.3",
"@mantine/hooks": "^3.4.3",
"babel-plugin-superjson-next": "^0.4.2",
"dayjs": "^1.10.7",
"nanoid": "^3.1.30",
"next": "12.0.7",
"node-json-db": "^1.4.1",
"react": "17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"superjson": "^1.8.0"
},
"devDependencies": {
"@types/node": "17.0.0",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}