-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "rare-diseases",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"local": "npm run all && npm run build",
"cpanel": "npm run all && tsc && vite build --base https://stephenandrewtaylor.net/rare-diseases/ --outDir rare-diseases && zip -r rare-diseases.zip rare-diseases && mv rare-diseases dist",
"cloudflare": "npm run all && npm run build && npx wrangler pages deploy dist",
"all": "npm run format && npm run lint",
"format": "npx prettier --write .",
"lint": "npx eslint --fix .",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/d3": "^7.4.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"wrangler": "^3.76.0"
},
"dependencies": {
"@fontsource-variable/roboto-flex": "^5.0.14",
"@fontsource/open-sans": "^5.0.27",
"@fontsource/roboto-flex": "^5.0.14",
"d3": "^7.9.0",
"normalize.css": "^8.0.1"
}
}