-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mathematica",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "pnpm run next:dev",
"next:dev": "next dev",
"next:build": "next build",
"next:start": "next start",
"next:export": "next export",
"next:static": "next build && next export",
"next:preview": "next build && next start",
"prisma:generate": "prisma generate",
"eslint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"stylelint:fix": "stylelint \"scss/**/*.{css,scss,sass}\" --fix",
"fix": "pnpm run eslint:fix && pnpm run stylelint:fix",
"vercel-build": "prisma generate && prisma migrate deploy && next build"
},
"dependencies": {
"@emotion/css": "^11.11.0",
"@matejmazur/react-katex": "^3.1.3",
"@monaco-editor/react": "^4.5.1",
"@prisma/client": "^4.14.1",
"@react-three/flex": "^1.0.1",
"@types/d3": "7.4.0",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.194",
"@types/markdown-it": "^12.2.3",
"@types/react": "^18.2.6",
"@types/react-table": "^7.7.14",
"@types/svgo": "^2.6.4",
"@types/three": "^0.152.0",
"@types/uniqid": "^5.3.2",
"@vercel/analytics": "^1.0.1",
"auto-bind": "^5.0.1",
"citation-js": "^0.6.8",
"classnames": "^2.3.2",
"d3": "7.8.4",
"eol": "^0.9.1",
"global": "^4.4.0",
"joi": "^17.9.2",
"jsdom": "^22.0.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-katex": "^2.0.3",
"modern-normalize": "^2.0.0",
"moment": "^2.29.4",
"mysql2": "^3.3.1",
"next": "^13.4.3",
"next-seo": "^6.0.0",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-select": "^5.7.3",
"react-ssr-prepass": "^1.5.0",
"react-table": "^7.8.0",
"react-xarrows": "^2.0.2",
"react-zoom-pan-pinch": "3.0.7",
"rooks": "^7.14.1",
"rxjs": "^7.8.1",
"sequelize": "^6.31.1",
"smooth-scrollbar": "^8.8.3",
"svgo": "^3.0.2",
"swr": "^2.1.5",
"three": "^0.152.2",
"tslib": "^2.5.2",
"type-fest": "^3.10.0",
"typescript": "^5.0.4",
"uniqid": "^5.4.0",
"urlcat": "^3.1.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.3",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"next-transpile-modules": "^8.0.0",
"prisma": "^4.14.1",
"sass": "^1.62.1",
"stylelint": "^15.6.2",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-formatter-pretty": "^3.2.0",
"webpack": "^5.83.1"
}
}