This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "viewer",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"dependencies": {
"@pi-base/core": "^0.0.11",
"@sentry/browser": "^6.19.6",
"bootstrap": "^4.6.0",
"fuse.js": "^5.0.10-beta",
"immer": "^9.0.6",
"jquery": "^3.5.1",
"katex": "^0.11.1",
"micromark-util-types": "^1.0.2",
"moment": "^2.26.0",
"popper.js": "^1.16.1",
"rehype-katex": "^6.0.2",
"rehype-stringify": "^9.0.3",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"reselect": "^4.0.0",
"svelte": "^3.42.6",
"svelte-routing": "^1.6.0",
"unified": "^10.1.2"
},
"scripts": {
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"dev": "vite",
"preinstall": "npx only-allow pnpm",
"preview": "vite preview",
"test": "vitest",
"test:cov": "vitest run --coverage",
"cy:open": "cypress open --config baseUrl=http://localhost:3000",
"cy:open:stage": "cypress open --config baseUrl=https://counterexamples.info",
"cy:run": "cypress run",
"cy:run:dev": "cypress run --config baseUrl=http://localhost:3000",
"cy:run:stage": "cypress run --config baseUrl=https://counterexamples.info"
},
"eslintConfig": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"@testing-library/dom": "^7.7.3",
"@testing-library/user-event": "^7.1.2",
"@tsconfig/svelte": "^2.0.1",
"@types/katex": "^0.11.0",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"c8": "^7.11.0",
"cypress": "^8.3.1",
"eslint": "^6.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "2.0.5",
"svelte": "^3.44.0",
"svelte-check": "^2.2.7",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.9.8",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.9.2",
"vitest": "^0.9.3"
}
}