-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.14 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
{
"name": "curricular-analytics-graph",
"version": "0.1.0",
"description": "Visualize curricula and degree plans. Compatible with CurricularVisualization.jl.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "esbuild --bundle --loader:.svg=file --loader:.csv=text app/index.tsx --outdir=dist --supported:nesting=false --minify && node scripts/pack-html.js",
"clean": "rm -f dist/*.js dist/*.css dist/*.map dist/graph-demo.html",
"dev": "esbuild --bundle --loader:.svg=file --loader:.csv=text app/index.tsx --outdir=dist --servedir=dist --sourcemap",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SheepTester-forks/curricular-analytics-graph.git"
},
"author": "Sean Yen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SheepTester-forks/curricular-analytics-graph/issues"
},
"homepage": "https://github.com/SheepTester-forks/curricular-analytics-graph#readme",
"devDependencies": {
"@types/react-dom": "^18.2.13",
"esbuild": "0.19.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}