-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.46 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
{
"name": "split",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"format": "prettier --write \"components/**/*.{js,jsx,ts,tsx}\" \"pages/**/*.{js,jsx,ts,tsx}\" ",
"format:check": "prettier --check \"components/**/*.{js,jsx,ts,tsx}\" \"pages/**/*.{js,jsx,ts,tsx}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"components/**/*.{js,jsx,ts,tsx}\" \"pages/**/*.{js,jsx,ts,tsx}\"",
"lint:quiet": "eslint \"components/**/*.{js,jsx,ts,tsx}\" \"pages/**/*.{js,jsx,ts,tsx}\" --quiet"
},
"dependencies": {
"@headlessui/react": "^1.6.3",
"mongodb": "^4.17.2",
"next": "12.1.6",
"next-connect": "^0.12.2",
"next-pwa": "^5.5.2",
"react": "18.1.0",
"react-device-detect": "^2.2.2",
"react-dom": "18.1.0",
"react-icons": "^4.3.1",
"sass": "^1.52.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"typescript": "4.7.2"
}
}