This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "2020.jsconfkorea.com",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/jsconfkorea/2020.jsconfkorea.com.git",
"author": "Chris Yang <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"dev": "HOST=0.0.0.0 next",
"build": "next build",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"lint": "eslint src --ext=.ts,.tsx --fix"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.34",
"@emotion/styled": "^10.0.27",
"@types/lodash": "^4.14.159",
"@types/react-gtm-module": "^2.0.0",
"emotion-normalize": "^10.1.0",
"emotion-theming": "^10.0.27",
"framer-motion": "^2.3.0",
"gray-matter": "^4.0.2",
"hamburgers": "^1.1.3",
"lodash": "^4.17.21",
"next": "^11.1.0",
"next-seo": "^4.7.3",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.1.2",
"react-gtm-module": "^2.0.10",
"react-markdown": "^7.0.1",
"react-use": "^15.3.3",
"remark-gfm": "^2.0.0",
"rosetta": "^1.1.0",
"sass": "^1.26.10",
"shortid": "^2.2.15"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"typescript": "^4.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,json,md}": "prettier --write"
}
}