-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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": "proclama-preliminar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext js .",
"lint:fix": "npm run lint -- --fix",
"lint-only": "eslint --ext .js",
"lint-only:fix": "npm run lint-only -- --fix",
"prepare": "husky install",
"postinstall": "husky install",
"precommit": "lint-staged",
"optimize:svg": "node ./scripts/optimize-svg.js"
},
"lint-staged": {
"*.{js,jsx,css}": [
"npm run lint-only"
]
},
"devDependencies": {
"@svgr/webpack": "6.2.1",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"babel-eslint": "10.1.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-flowtype": "5.7.2",
"eslint-plugin-import": "2.23.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"prettier": "2.3.0"
},
"dependencies": {
"jsdom": "^16.5.3",
"mongoose": "^5.12.13",
"next": "^12",
"next-iron-session": "^4.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-masonry-css": "^1.0.16",
"react-use-hotjar": "^1.2.1",
"styled-components": "5.3.0",
"svgo": "^2.3.0",
"swr": "^0.5.6"
}
}