-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 937 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 937 Bytes
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
{
"name": "mathnotes",
"version": "1.0.0",
"description": "Mathnotes interactive mathematics demonstrations",
"type": "module",
"scripts": {
"dev": "node esbuild.config.js --watch",
"build": "node esbuild.config.js",
"type-check": "tsc --noEmit",
"build:static": "python scripts/build_static_simple.py",
"serve:static": "docker-compose up --build"
},
"devDependencies": {
"@types/p5": "^1.7.6",
"@types/plotly.js": "^3.0.6",
"autoprefixer": "^10.4.16",
"esbuild": "^0.19.11",
"glob": "^10.3.10",
"postcss": "^8.4.32",
"postcss-custom-media": "^10.0.2",
"postcss-lab-function": "^6.0.9",
"postcss-nesting": "^12.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/cytoscape": "^3.21.9",
"cytoscape": "^3.33.1",
"fflate": "^0.8.2",
"mathjax": "^3.2.2",
"mathjs": "^15.1.0",
"p5": "^1.9.0",
"plotly.js-dist-min": "^3.1.1"
}
}