-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathpackage.json
66 lines (66 loc) · 2.28 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
61
62
63
64
65
66
{
"name": "ray-optics",
"displayName": "Ray Optics Simulation",
"description": "A web app for creating and simulating 2D geometric optical scenes.",
"version": "5.1-dev",
"author": "Yi-Ting Tu",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@popperjs/core": "2.11.8",
"ace-builds": "^1.36.0",
"bootstrap": "5.1.3",
"canvas2svg": "github:gliffy/canvas2svg",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"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": "^2.6.2",
"jquery": "^3.7.1",
"json-url": "^3.1.0",
"mathjs": "^13.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.4",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"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.8",
"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.27.0"
},
"scripts": {
"test": "npm run test:sceneObjs && npm run test:scenes",
"test:sceneObjs": "jest test/sceneObjs",
"test:scenes": "npm run build-node && jest test/scenes",
"build-webpages": "node ./scripts/buildWebpages.mjs",
"build-scenes": "node ./scripts/buildScenes.mjs",
"build-node": "webpack --config webpack.node.config.mjs",
"build-images": "node ./scripts/buildImages.mjs",
"build-simulator": "webpack --mode=production",
"build-docs": "jsdoc -c jsdoc.json",
"start": "webpack serve --open simulator/ --mode=development",
"build": "npm run build-webpages && npm run build-scenes && npm run build-node && npm run build-images && npm run build-simulator && npm run build-docs",
"add-to-gallery": "node ./scripts/addToGallery.mjs",
"add-to-modules": "node ./scripts/addToModules.mjs",
"sort-translations": "node ./scripts/sortTranslations.mjs"
}
}