-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"private": true,
"name": "teaching-workshop.cs.illinois.edu",
"version": "0.1.0",
"scripts": {
"prebuild": "node bin/build.mjs mdx output --build --clean",
"build": "next build",
"predeploy": "yarn export",
"deploy": "gh-pages -t -b deploy -d dist",
"predeploy:github": "yarn export:github",
"deploy:github": "gh-pages -t -d dist",
"preexport": "rimraf dist && yarn build",
"export": "next export -o dist && touch dist/.nojekyll",
"preexport:github": "rimraf dist && NEXT_PUBLIC_BASE_PATH=/teaching-workshop.cs.illinois.edu yarn build",
"export:github": "NEXT_PUBLIC_BASE_PATH=/teaching-workshop.cs.illinois.edu next export -o dist && touch dist/.nojekyll",
"lint": "next lint && eslint",
"ncu": "ncu",
"serve": "next start",
"start": "run-p start-mdx start-next",
"start-mdx": "node bin/build.mjs mdx output --clean",
"start-next": "next dev",
"prettier": "prettier -w --plugin=prettier-plugin-organize-imports . && prettier-package-json --write"
},
"dependencies": {
"next": "12.1.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-lazyload": "3.2.0",
"remark-gfm": "^1.0.0"
},
"devDependencies": {
"@types/argparse": "2.0.10",
"@types/child-process-promise": "2.2.2",
"@types/fs-extra": "9.0.13",
"@types/gtag.js": "^0.0.10",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-lazyload": "3.2.0",
"@types/replace-ext": "2.0.0",
"argparse": "2.0.1",
"child-process-promise": "2.2.1",
"chokidar": "3.5.3",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"fs-extra": "10.0.1",
"gh-pages": "3.2.3",
"glob": "8.0.1",
"glob-promise": "4.2.2",
"gray-matter": "4.0.3",
"npm-check-updates": "12.5.8",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"prettier-package-json": "2.6.3",
"prettier-plugin-organize-imports": "2.3.4",
"replace-ext": "2.0.0",
"rimraf": "3.0.2",
"sass": "1.50.0",
"ts-node": "10.7.0",
"typescript": "4.6.3",
"xdm": "3.4.0"
},
"prettier": {
"semi": false,
"printWidth": 120
}
}