-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.49 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": "open-wizard",
"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"
},
"lint-staged": {
"*.{js,jsx,css}": [
"npm run lint-only"
]
},
"dependencies": {
"@openpolitica/matomo-next": "^1.2.1",
"isomorphic-fetch": "^3.0.0",
"local-storage": "^2.0.0",
"lodash.groupby": "^4.6.0",
"lodash.lowercase": "^4.3.0",
"lodash.orderby": "^4.6.0",
"lodash.startcase": "^4.4.0",
"next": "10.0.5",
"qs": "^6.9.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-use-hotjar": "^1.0.8",
"styled-components": "^5.2.1",
"swr": "^0.4.0"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
}
}