-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.6 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.6 KB
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
{
"name": "s8-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn markdown:build && next dev -p 3010",
"build": "yarn markdown:build && next build",
"deploy": "yarn build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy gh-pages\" && git subtree push --prefix=out origin gh-pages",
"start": "next start",
"lint": "next lint",
"markdown:build": "ts-node --project ./node.tsconfig.json ./src/scripts/BuildMarkdownData.ts"
},
"dependencies": {
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"clsx": "^1.1.1",
"markdown-to-jsx": "^7.1.3",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-highlight": "^0.14.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/marked": "^2.0.4",
"@types/node": "^16.4.0",
"@types/react": "17.0.14",
"@types/react-highlight": "^0.12.3",
"@types/rimraf": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"graphql": "^15.5.1",
"graphql-request": "^3.4.0",
"marked": "^2.1.3",
"prettier": "^2.3.2",
"prettier-eslint": "^12.0.0",
"ts-node": "^10.1.0",
"twing": "^5.0.2",
"typescript": "4.3.5"
}
}