-
-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathpackage.json
32 lines (32 loc) · 908 Bytes
/
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
{
"name": "hat.sh",
"version": "2.3.6",
"private": true,
"scripts": {
"dev": "browserify service-worker/sw.js -o public/service-worker.js && next dev",
"build": "browserify service-worker/sw.js -o public/service-worker.js && next build && next export",
"postbuild": "node ./post-build.js",
"start": "next start -p 3991",
"lint": "next lint",
"test": "cypress open"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"libsodium-wrappers": "^0.7.10",
"marked": "4.0.16",
"next": "^12.1.6",
"prismjs": "^1.28.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6"
}
}