-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
30 lines (30 loc) · 858 Bytes
/
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
{
"name": "online-ide",
"private": true,
"version": "1.3.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000 --host",
"build": "tsc && vite build && vite build --config vite.config-embedded.js",
"build-ide": "tsc && vite build",
"build-embedded": "tsc && vite build --config vite.config-embedded.js",
"preview": "npm run build && vite preview --port 3000 --host",
"build_tools": "tsc --project tsconfig_development-tools.json"
},
"devDependencies": {
"@types/jquery": "^3.5.16",
"@types/node": "^18.14.0",
"jimp": "^0.16.1",
"live-server": "^1.2.2",
"monaco-editor": "^0.38.0",
"spritesmith": "^3.4.0",
"typescript": "^4.9.3",
"vite": "^4.1.4"
},
"dependencies": {
"@types/chart.js": "^2.9.25",
"jquery": "^3.6.3",
"pixi.js": "7.2.0",
"pixi3d": "^2.4.0"
}
}