-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.03 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
{
"name": "apvd.js",
"version": "0.1.0",
"description": "Area-Proportional Venn Diagrams",
"author": {
"name": "Ryan Williams",
"email": "[email protected]"
},
"dependencies": {
"apvd": "https://gitpkg.now.sh/runsascoded/shapes?6ac234f",
"bootstrap": "^5.3.1",
"buffer": "^6.0.3",
"d3-svg-to-png": "^0.3.1",
"lodash": "^4.17.21",
"next": "^13.2.4",
"next-utils": "https://gitpkg.now.sh/runsascoded/next-utils/dist?5eb21c0",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.0.0",
"react-mathquill": "^1.0.3",
"react-plotly.js": "^2.6.0",
"react-resizable": "^3.0.5",
"react-scroll-wheel-handler": "^2.2.0",
"react-sparklines": "^1.7.0",
"sass": "^1.66.1",
"save-svg-as-png": "^1.4.17",
"use-local-storage-state": "^19.1.0",
"use-session-storage-state": "^18.2.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.199",
"@types/node": "^17.0.23",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-plotly.js": "^2.6.0",
"@types/react-resizable": "^3.0.4",
"@types/react-sparklines": "^1.7.2",
"eslint": "^8.46.0",
"eslint-config-next": "^13.2.4",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-matcher-deep-close-to": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export -o out/apvd && write-redirects -o apvd -ss",
"gha-export": "next build && next export && write-redirects -b apvd -ss && touch out/.nojekyll",
"test": "jest"
}
}