-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
56
57
58
59
60
{
"name": "startlang",
"version": "0.0.2",
"description": "Beginning Programming Environment",
"type": "module",
"directories": {},
"scripts": {
"build": "NODE_ENV=production next build",
"dev": "NODE_ENV=development next dev",
"repl": "tsx --import ./tools/hooks.js ./tools/repl.js",
"script": "tsx --import ./tools/hooks.js ./tools/script.js",
"format": "prettier --write ./src/**/*.[jt]s",
"typecheck": "tsc --noEmit",
"lint": "eslint ./app ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/polgfred/startlang.git"
},
"author": "Frederick Polgardy <[email protected]>",
"license": "ISC",
"dependencies": {
"@vercel/analytics": "^1.5.0",
"next": "^15.1.7"
},
"devDependencies": {
"@blockly/field-angle": "^5.0.12",
"@eslint/js": "^9.20.0",
"@monaco-editor/react": "^4.7.0",
"@mui/material": "^6.4.4",
"@mui/material-pigment-css": "^6.4.3",
"@mui/system": "^6.4.3",
"@pigment-css/nextjs-plugin": "^0.0.30",
"@pigment-css/react": "^0.0.29",
"@types/deep-equal": "^1.0.4",
"blockly": "^11.2.1",
"classnames": "^2.5.1",
"deep-equal": "^2.2.3",
"esbuild-loader": "^4.2.2",
"esbuild-runner": "^2.2.2",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "~5.0.0",
"globals": "^15.15.0",
"html-loader": "^5.1.0",
"immer": "^10.1.1",
"peggy": "^4.2.0",
"prettier": "^3.5.1",
"prettier-plugin-pegjs": "^2.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"text-loader": "^0.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
}
}