-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 910 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": "Pepcrypt",
"version": "2.3.7",
"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.13",
"marked": "11.0.1",
"next": "^14.0.4",
"prismjs": "^1.28.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "8.55.0",
"eslint-config-next": "14.0.4"
}
}