-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "umwics",
"version": "1.0.0",
"scripts": {
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && next",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && next build && npm run build-sitemap",
"build-sitemap": "node ./scripts/generateSitemap.js",
"start": "next start",
"type-check": "tsc",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint . --ext ts --ext tsx --ext js --ext jsx",
"test": "jest",
"test-all": "npm run lint && npm run type-check && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"autosuggest-highlight": "^3.1.1",
"cookie": "^0.4.1",
"date-fns": "^2.21.1",
"deepmerge": "^4.2.2",
"firebase": "^7.24.0",
"firebase-admin": "^9.6.0",
"formik": "^2.2.1",
"formik-material-ui": "^3.0.0",
"formik-material-ui-lab": "0.0.7",
"formik-material-ui-pickers": "0.0.11",
"gray-matter": "^4.0.2",
"next": "^9.5.5",
"next-connect": "^0.9.1",
"next-seo": "^4.14.0",
"nextjs-sitemap-generator": "^1.1.1",
"notistack": "^1.0.6",
"nprogress": "^0.2.0",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.14.0",
"react-firebase-hooks": "^2.2.0",
"react-markdown": "^6.0.1",
"react-material-ui-carousel": "^2.2.2",
"react-reveal": "^1.2.2",
"react-swipeable-views": "^0.13.9",
"react-syntax-highlighter": "^15.2.1",
"swr": "^0.3.6",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/autosuggest-highlight": "^3.1.1",
"@types/cookie": "^0.4.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.41",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.53",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.3",
"@types/react-swipeable-views": "^0.13.0",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/testing-library__react": "^10.2.0",
"@types/uuid": "^8.3.0",
"@types/webpack-env": "^1.15.3",
"@types/yup": "^0.29.8",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.1",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.5.4",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"private": true,
"license": "ISC"
}