-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "sos21-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-spring/web": "9.3.1",
"@sentry/nextjs": "7.50.0",
"dayjs": "1.10.7",
"ky": "0.28.5",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.12.2",
"uuid": "8.3.2",
"validator": "13.7.0"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@material-ui/core": "4.12.3",
"@next/bundle-analyzer": "12.0.4",
"@storybook/addon-actions": "6.4.0",
"@storybook/addon-essentials": "6.4.0",
"@storybook/addon-links": "6.4.0",
"@storybook/preset-scss": "1.0.3",
"@storybook/react": "6.4.0",
"@types/file-saver": "2.0.3",
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/uuid": "8.3.1",
"@types/validator": "13.6.5",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"babel-loader": "8.2.3",
"change-case": "4.1.2",
"contentful": "9.1.4",
"css-loader": "5.2.7",
"eslint": "8.3.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.7.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"file-saver": "2.0.5",
"firebase": "8.10.0",
"husky": "^8.0.0",
"lint-staged": "11.2.6",
"next-compose-plugins": "2.2.1",
"next-secure-headers": "2.2.0",
"next-transpile-modules": "8.0.0",
"normalize.css": "8.0.1",
"pathpida": "0.17.0",
"prettier": "2.4.1",
"react-dropzone": "11.4.2",
"react-twitter-widgets": "1.10.0",
"sass": "1.43.5",
"sass-loader": "10.2.0",
"style-loader": "2.0.0",
"tsconfig-paths": "3.11.0",
"typescript": "4.5.2"
},
"resolutions": {
"@types/react": "17.0.14",
"@types/react-dom": "17.0.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --check"
],
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"scripts": {
"prepare": "husky install"
}
}