-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "nishino",
"version": "1.0.0",
"description": "A small reader for Tomotoshi Nishino's selection of papers on tensor networks",
"scripts": {
"dev": "vite",
"prebuild": "npm run lint",
"build": "vite build",
"serve": "vite preview",
"lint": "prettier --check --plugin-search-dir=. --ignore-path .gitignore . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. --ignore-path .gitignore .",
"db-update": "node functions/util/setup.js"
},
"author": "Giacomo Giudice",
"license": "MIT",
"type": "module",
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.5",
"autoprefixer": "^10.4.7",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"fuse.js": "^6.6.2",
"glob": "^10.3.10",
"html-entities": "^2.5.2",
"katex": "^0.16.10",
"node-fetch": "^3.3.2",
"postcss": "^8.4.31",
"posthtml": "^0.16.6",
"posthtml-include": "^1.7.4",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.1",
"redis": "^4.6.13",
"sass": "^1.69.5",
"svelte": "^3.59.2",
"svelte-preprocess": "^5.0.3",
"vite": "^4.5.3"
},
"browserslist": [
"last 3 version",
"> 0.25%",
"not dead"
]
}