-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
51
52
53
54
55
{
"name": "unsplash-image-search",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"blurhash": "^1.1.4",
"date-fns": "^2.23.0",
"lodash-es": "^4.17.21",
"next": "11.1.2",
"next-pwa": "^5.3.1",
"react": "17.0.2",
"react-blurhash": "^0.1.3",
"react-dom": "17.0.2",
"react-icons": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@next/bundle-analyzer": "^11.1.2",
"@snek-at/storybook-addon-chakra-ui": "^1.0.0-beta.1",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@types/lodash-es": "^4.17.4",
"@types/react": "17.0.20",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.4.0",
"prettier-plugin-organize-imports": "^2.3.3",
"typescript": "4.4.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,ts,jsx,tsx,css,md}": "prettier --write"
}
}