-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 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
{
"name": "2021",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -e staging next dev",
"build": "env-cmd -e staging next build",
"preexport": "npm run build",
"export": "next export",
"export-staging": "env-cmd -e staging --use-shell \"next build && next export\"",
"export-production": "env-cmd -e production --use-shell \"next build && next export\"",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx,json} --ignore-path .gitignore",
"lint": "eslint . --ext ts --ext tsx --ext js --ignore-path .gitignore",
"test": "jest tests"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.2",
"@chakra-ui/react": "^1.0.4",
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@n8tb1t/use-scroll-position": "^1.0.47",
"firebase": "^8.0.1",
"focus-visible": "^5.2.0",
"framer-motion": "^3.1.1",
"next": "^10.0.4",
"react": "16.13.1",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "16.13.1",
"react-hamburger-menu": "^1.2.1",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^5.0.3",
"react-masonry-css": "^1.0.14",
"zustand": "^3.0.2"
},
"devDependencies": {
"@firebase/testing": "^0.15.1",
"@types/node": "^14.6.0",
"@types/react": "^16.9.47",
"@types/react-hamburger-menu": "0.0.3",
"@types/react-linkify": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-inline-react-svg": "^1.1.1",
"env-cmd": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"prettier": "2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"typescript": "^4.0.2"
}
}