-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "hackalog-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"format": "prettier --write \"./components/**\" \"./types/**\" \"./pages/**\" \"./context/**\" --ignore-path ./.gitignore",
"lint": "eslint \"./components/**\" \"./pages/**\" \"./context/**\" \"./types/**\"",
"lint:fix": "yarn lint --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"yarn format"
]
},
"dependencies": {
"atomize": "^1.0.26",
"axios": "^0.21.1",
"bootstrap": "^4.5.3",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.16.1",
"firebase": "^7.24.0",
"next": "^10.0.0",
"react": "16.13.1",
"react-animated-burgers": "^1.2.8",
"react-bootstrap": "^1.4.0",
"react-dom": "16.13.1",
"react-icons": "^3.11.0",
"react-lottie": "^1.2.3",
"react-markdown": "^5.0.3",
"react-select": "^3.1.1",
"react-toastify": "^7.0.3",
"react-transition-group": "^4.4.1",
"remark-code-frontmatter": "^1.0.0",
"remark-gfm": "^1.0.0",
"remark-highlight.js": "^6.0.0",
"styled-components": "^5.2.1",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.16.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"typescript": "^4.4.2"
}
}