This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
{
"name": "sourcegraph-learn",
"license": "Apache-2.0",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true next build",
"dev": "./script/runDev.sh",
"build": "./script/runBuild.sh",
"start": "next start",
"prettier": "prettier '**/*.{js?(on),ts?(x),md}' --ignore-path .gitignore --write --list-different",
"eslint": "eslint '**/*.{ts,tsx}' --ignore-path .gitignore",
"eslint-fix": "npm run eslint -- --fix",
"check-types": "tsc --noemit",
"lint": "npm run eslint && npm run check-types",
"clean": "rm -rf out .next"
},
"dependencies": {
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"mdi-react": "^8.2.0",
"next": "^12.0.7",
"next-mdx-remote": "^3.0.8",
"prismjs": "^1.25.0",
"prism-react-renderer": "^1.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^5.1.0",
"rehype-react": "^7.0.3",
"rehype-slug": "^4.0.1",
"remark-rehype": "^10.1.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.7",
"@next/eslint-plugin-next": "^12.0.7",
"@sourcegraph/eslint-config": "^0.33.0",
"@sourcegraph/prettierrc": "^3.0.3",
"@types/js-yaml": "4.0.5",
"@types/node": "16.11.22",
"@types/prismjs": "1.16.6",
"@types/react": "17.0.45",
"@types/styled-components": "5.1.24",
"eslint": "7.32.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "21.0.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.2",
"sass": "^1.44.0",
"typescript": "^4.5.4"
}
}