-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
{
"name": "tueeit-new-site",
"description": "The official website of Taiwan Union of Electronics, Electrical and Information Technology",
"author": "[email protected]",
"private": true,
"repository": "tueeit/site",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"export": "next export && cp CNAME ./out",
"start": "next start",
"format": "npx prettier 'src/**/*.{js,jsx,ts,tsx,md,mdx,html,css,scss,json,yml}' --write || true",
"lint": "npm run format && npm run lint:js && npm run lint:css && npm run lint:md",
"lint:css": "npx stylelint '**/*.css' --fix || true",
"lint:js": "next lint",
"lint:md": "npx markdownlint '**/*.{md,mdx}' --config=.markdownlint --fix"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.5",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.0.10",
"@react-pdf-viewer/core": "^3.1.0",
"date-fns": "^2.28.0",
"framer-motion": "^4.1.17",
"gray-matter": "^4.0.3",
"next": "^12.0.10",
"next-mdx-remote": "^3.0.8",
"pdfjs-dist": "^2.12.313",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-virtuoso": "^2.7.1",
"react-youtube": "^7.13.1"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"markdownlint": "^0.25.1",
"markdownlint-cli": "^0.31.0",
"next-sitemap": "^2.4.3",
"prettier": "^2.3.2",
"stylelint": "^14.3.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-styled-components": "^0.1.1"
}
}