-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.1 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
{
"name": "ray-optics",
"displayName": "Ray Optics Simulation",
"description": "A web app for creating and simulating 2D geometric optical scenes.",
"version": "5.4.0",
"author": "Yi-Ting Tu",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@popperjs/core": "2.11.8",
"@vue/runtime-dom": "^3.5.13",
"ace-builds": "^1.36.0",
"bezier-js": "^6.1.4",
"bootstrap": "5.1.3",
"canvas2svg": "github:gliffy/canvas2svg",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"escape-html": "^1.0.3",
"evaluatex": "^2.2.0",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.2",
"i18next": "^23.16.5",
"i18next-http-backend": "^3.0.5",
"jquery": "^3.7.1",
"json-url": "^3.1.0",
"mathjs": "^15.2.0",
"mathquill": "github:Jutanium/mathquill-webpack",
"sass": "^1.80.3",
"sass-loader": "^16.0.2",
"seedrandom": "^3.0.5",
"style-loader": "^4.0.0",
"tex-math-parser": "^2.0.5",
"vue": "^3.0.0",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.4"
},
"optionalDependencies": {
"@babel/preset-env": "^7.26.0",
"@inquirer/prompts": "^7.1.0",
"bootstrap3": "npm:bootstrap@^3.3.7",
"canvas": "^2.11.2",
"handlebars": "^4.7.9",
"inquirer": "^12.1.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"marked": "^15.0.3",
"mathjax": "^3.2.2",
"sharp": "^0.33.5",
"simple-git": "^3.36.0"
},
"scripts": {
"test": "npm run test:propertyUtils && npm run test:sceneObjs && npm run test:scenes",
"test:propertyUtils": "jest test/propertyUtils",
"test:sceneObjs": "jest test/sceneObjs",
"test:scenes": "npm run build-node && jest test/scenes",
"build-pages": "node ./scripts/buildPages.mjs",
"build-pages:release": "node ./scripts/buildPages.mjs --release",
"build-scenes": "node ./scripts/buildScenes.mjs",
"build-node": "webpack --config webpack.node.config.mjs",
"build-images": "node ./scripts/buildImages.mjs",
"build-app": "webpack --mode=production",
"build-simulator": "webpack --mode=development",
"build-integrations": "npm run build-node && node ./scripts/buildIntegrations.mjs",
"build-integrations:release": "npm run build-node && node ./scripts/buildIntegrations.mjs --release",
"build-docs": "jsdoc -c jsdoc.json",
"start": "webpack serve --open simulator/ --mode=development",
"build": "npm run build-pages && npm run build-scenes && npm run build-node && npm run build-images && npm run build-app && npm run build-docs",
"build:release": "npm run build-pages:release && npm run build-scenes && npm run build-node && npm run build-images && npm run build-app && npm run build-docs",
"add-to-gallery": "node ./scripts/addToGallery.mjs",
"add-to-modules": "node ./scripts/addToModules.mjs",
"sort-translations": "node ./scripts/sortTranslations.mjs"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.5.13",
"jsdoc": "^4.0.4",
"jsdoc-vuejs": "^4.0.0",
"vue-loader": "^17.4.2",
"vue-template-compiler": "^2.7.16"
}
}