-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "kramster",
"version": "3.0.0",
"description": "Kramster is a quiz app for making exam preparation more fun",
"main": "src/server/server.js",
"type": "module",
"engines": {
"node": "22",
"npm": "10"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"eslint": "eslint src/**/*.{ts,tsx} ",
"stylelint": "stylelint src/**/*.css",
"format": "prettier . --write",
"format:check": "prettier . --check",
"ts": "tsc --noEmit",
"lint": "npm run eslint && npm run stylelint && npm run format:check",
"deploy": "npm run build && firebase deploy"
},
"repository": {
"type": "git",
"url": "git://github.com/draperunner/Kramster.git"
},
"author": "Mats Byrkjeland",
"license": "Apache-2.0",
"dependencies": {
"dompurify": "^3.2.4",
"katex": "^0.16.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.2"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/node": "^22.13.1",
"@types/qs": "^6.9.18",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.19.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"firebase-tools": "^13.29.3",
"prettier": "^3.4.2",
"stylelint": "^16.13.2",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^5.4.14"
}
}