-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "@sourceacademy/modules-devserver",
"description": "Lightweight React server powered by Vite for rapid development and testing of Source Academy Bundles and Tabs",
"readme": "./README.md",
"version": "1.0.0",
"private": true,
"type": "module",
"bin": {
"devserver": "./bin.js"
},
"dependencies": {
"@blueprintjs/core": "^6.0.0",
"@blueprintjs/icons": "^6.0.0",
"@commander-js/extra-typings": "^14.0.0",
"@sourceacademy/modules-lib": "workspace:^",
"@vitejs/plugin-react": "^6.0.1",
"ace-builds": "^1.25.1",
"classnames": "^2.3.1",
"commander": "^14.0.0",
"js-slang": "^1.0.85",
"re-resizable": "^6.9.11",
"react": "^19.0.0",
"react-ace": "^14.0.0",
"react-dom": "^19.0.0",
"vite": "^8.0.5",
"vite-plugin-node-polyfills": "^0.26.0"
},
"devDependencies": {
"@sourceacademy/modules-buildtools": "workspace:^",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/browser-playwright": "4.1.4",
"eslint": "^9.35.0",
"playwright": "^1.55.1",
"sass": "^1.85.0",
"typescript": "^6.0.2",
"vitest": "4.1.4",
"vitest-browser-react": "^2.1.0"
},
"peerDependencies": {
"es-toolkit": "^1.44.0"
},
"scripts": {
"dev": "vite",
"lint": "eslint src",
"postinstall": "playwright install --with-deps",
"test": "buildtools test --project .",
"tsc": "tsc --project ./tsconfig.json"
}
}