-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.22 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": "text-over-image",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\""
},
"dependencies": {
"emoji-mart": "^3.0.1",
"file-saver": "^2.0.5",
"html2canvas": "1.0.0-alpha.12",
"next": "10.0.7",
"react": "17.0.1",
"react-color": "^2.19.3",
"react-dom": "17.0.1",
"react-query": "^3.13.4",
"react-semantic-ui-range": "^0.7.1",
"rgb-hex": "^3.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"unsplash-js": "^7.0.4"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"npm run eslint:fix",
"prettier --write \"**/*.+(js|jsx)\""
]
}
}