-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1003 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "query-qr",
"version": "0.1.0",
"description": "A static site that generates useful QR codes",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dbk91/qrcode.git"
},
"author": "Daniel Kelly",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build && next export",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"clipboard": "^2.0.4",
"file-saver": "^2.0.2",
"formik": "^2.1.1",
"next": "^12.0.3",
"qrcode": "^1.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^13.1.6",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.4.4"
},
"lint-staged": {
"{src}/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
]
}
}