-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.23 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "math-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "nvm use",
"clean": "rm -rf node_modules .next build && yarn",
"dev": "cross-env URL_ENV=development next",
"build": "rm -rf build && next build && next export -o build",
"build:dev": "cross-env URL_ENV=development yarn build",
"build:prod": "cross-env URL_ENV=production yarn build",
"analyze": "cross-env ANALYZE=true next build",
"deploy": "source .env && ./deploy.sh",
"script:randomAnalysis": "node -r esm src/scripts/randomAnalysis.js",
"script:problemsByTopic": "node -r esm src/scripts/problemsByTopic.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenktruong/math-website.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stevenktruong/math-website/issues"
},
"homepage": "https://github.com/stevenktruong/math-website#readme",
"engines": {
"node": "^16"
},
"dependencies": {
"@next/eslint-plugin-next": "^11.1.0",
"gray-matter": "^4.0.3",
"moment": "^2.29.1",
"next": "^12.0.1",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rehype-katex": "^6.0.0",
"rehype-raw": "^6.0.0",
"rehype-react": "^7.0.0",
"rehype-stringify": "^9.0.1",
"remark": "^14.0.1",
"remark-highlight.js": "^7.0.0",
"remark-html": "^14.0.1",
"remark-math": "^5.0.0",
"remark-rehype": "^9.0.0",
"remark-slug": "^7.0.0",
"remark-toc": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@next/bundle-analyzer": "^11.1.1",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/node-sass": "^4.11.2",
"@types/react": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"esm": "^3.2.25",
"prettier": "^2.3.2",
"sass": "^1.37.5",
"source-map": "^0.7.3",
"typescript": "^4.3.5"
}
}