-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "nexus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@geist-ui/react": "^2.1.3",
"@geist-ui/react-icons": "^1.0.1",
"@vercel/node": "^1.9.1",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"isomorphic-unfetch": "^3.1.0",
"mailgun-js": "^0.22.0",
"mongodb": "3.6.9",
"next": "^10.1.4-canary.2",
"next-connect": "0.10.1",
"react": "17.0.2",
"react-bootstrap": "^1.5.2",
"react-dom": "17.0.2",
"react-vis": "^1.11.7",
"styled-components": "^5.2.1",
"swr": "^0.5.4"
},
"devDependencies": {
"@types/mailgun-js": "^0.22.11",
"@types/node": "^14.0.13",
"@types/react": "^16.9.38",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}