-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
{
"name": "switchfile",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@types/file-saver": "^2.0.3",
"@types/uuid": "^8.3.1",
"file-saver": "^2.0.5",
"framer-motion": "^4",
"jszip": "^3.7.0",
"lodash": "^4.17.21",
"next": "11.0.1",
"next-pwa": "^5.2.24",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"uuid": "^8.3.2",
"wasm-vips": "^0.0.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/react": "17.0.15",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"react-dropzone": "^11.3.4",
"typescript": "4.3.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}