-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "robot-karol-online",
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true next build",
"grammar": "lezer-generator ./lib/codemirror/parser/karol.grammar -o ./lib/codemirror/parser/parser.js",
"grammar-java": "lezer-generator ./lib/codemirror/javaParser/java.grammar -o ./lib/codemirror/javaParser/parser.js",
"grammar-python": "lezer-generator ./lib/codemirror/pythonParser/python.grammar -o ./lib/codemirror/pythonParser/parser.js",
"export": "next build"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@lezer/common": "^1.2.0",
"@lezer/highlight": "^1.2.0",
"blockly": "^9.0.0",
"canvas-confetti": "^1.6.0",
"clsx": "^2.0.0",
"daisyui": "^4.12.10",
"date-fns": "^2.29.3",
"immer": "^10.0.0",
"next": "^14.0.1",
"pullstate": "^1.25.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-reflex": "^4.0.9",
"react-render-if-visible": "^2.1.1",
"react-simple-star-rating": "^5.1.7",
"timeago-react": "^3.0.5"
},
"devDependencies": {
"@lezer/generator": "^1.7.0",
"@next/bundle-analyzer": "^13.0.0",
"@types/canvas-confetti": "^1.6.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.5",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-next": "^14.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.0.0"
}
}