-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.7 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"seed": "node -r dotenv/config ./scripts/seed.js",
"doenet-seed": "node -r dotenv/config ./scripts/doenet-seed.js",
"test": "vitest",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/commands": "^0.19.5",
"@codemirror/gutter": "^0.19.9",
"@codemirror/highlight": "^0.19.6",
"@codemirror/lang-xml": "^0.19.2",
"@codemirror/language": "^0.19.7",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/jost": "^4.5.13",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.1.18",
"@handsontable/react": "^12.1.2",
"@heroicons/react": "^2.0.18",
"@lezer/common": "^0.15.10",
"@lezer/lr": "^0.15.5",
"@lezer/xml": "^0.15.1",
"@prisma/client": "^5.12.1",
"@react-spring/web": "^9.4.5",
"@tailwindcss/forms": "^0.5.7",
"@types/node": "20.5.7",
"@use-gesture/react": "^10.2.22",
"@vercel/postgres": "^0.5.1",
"autoprefixer": "10.4.15",
"axios": "^0.27.2",
"bcrypt": "^5.1.1",
"better-react-mathjax": "^1.0.3",
"browser-image-resizer": "^2.4.1",
"clsx": "^2.0.0",
"compromise": "^13.11.4",
"compromise-numbers": "^1.4.0",
"cookie": "^0.4.1",
"copy-to-clipboard": "^3.3.2",
"crypto-js": "^3.3.0",
"cssesc": "^3.0.0",
"csv-parse": "^5.3.6",
"esm-seedrandom": "^3.0.5",
"framer-motion": "^10.12.10",
"handsontable": "^12.1.2",
"hi-base32": "^0.5.1",
"http2-proxy": "^5.0.53",
"hyperformula": "^2.0.0",
"idb-keyval": "^6.1.0",
"js-cookie": "^2.2.1",
"json-stringify-deterministic": "^1.0.1",
"jsonwebtoken": "^9.0.2",
"lodash.debounce": "^4.0.8",
"lorem-ipsum": "^2.0.4",
"math-expressions": "^2.0.0-alpha64",
"nanoid": "^3.1.31",
"next": "^14.0.2",
"next-auth": "^5.0.0-beta.15",
"papaparse": "^5.4.1",
"plotly.js-dist-min": "^2.20.0",
"postcss": "8.4.31",
"prisma": "^5.12.1",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.0.3",
"react-datetime": "^3.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.8.0",
"react-is": "^18.2.0",
"react-mathquill": "^1.0.3",
"react-measure": "^2.5.2",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"react-select": "^5.7.3",
"react-table": "^7.7.0",
"react-use-measure": "^2.1.1",
"react-visibility-sensor-v2": "^1.0.0",
"recoil": "^0.7.7",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"styled-components": "5.3.3",
"swiper": "^9.0.5",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"use-debounce": "^10.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@types/bcrypt": "^5.0.1",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.14",
"@vercel/style-guide": "^5.0.1",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "9.0.0",
"jsdom": "^24.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"ts-node": "^10.9.2",
"vitest": "^1.3.1"
},
"engines": {
"node": ">=18.17.0"
}
}