This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "@p2p.chat/www",
"private": true,
"version": "0.1.0",
"description": "Web app for p2p.chat",
"author": "Tom Watson <[email protected]>",
"license": "MIT",
"scripts": {
"build": "next build && next export",
"dev": "next dev",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,json,yml}\"",
"lint": "eslint --max-warnings=0 --cache --ext .js,.ts,.tsx . && prettier --check \"**/*.{js,ts,tsx,css,scss,json,yml}\"",
"start": "next start",
"type-check": "tsc --noEmit --incremental"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"assert": "^2.0.0",
"classnames": "^2.3.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"next": "^12.1.0",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-github-btn": "^1.2.1",
"react-loader-spinner": "^4.0.0",
"react-resize-detector": "^6.7.6",
"recoil": "^0.5.2",
"shorthash": "^0.0.2",
"socket.io-client": "^4.5.3"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"autoprefixer": "^10.4.0",
"eslint": "^7.24.0",
"eslint-config-next": "^12.0.6",
"next-transpile-modules": "^9.0.0",
"postcss": "^8.4.31",
"sass": "^1.32.10",
"tailwindcss": "^3.0.0",
"typescript": "^4.5.2"
}
}