-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.04 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
{
"name": "slidesdown",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"build": "vite build",
"deploy": "npm run build && firebase deploy",
"format": "prettier --write .",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint './src/**/*.{ts,tsx}'",
"lint:js": "eslint .",
"serve": "vite preview",
"start": "vite",
"test": "vitest",
"type-check": "tsc"
},
"keywords": [
"slides",
"slideshow",
"powerpoint",
"markdown"
],
"author": "tu4mo",
"license": "ISC",
"dependencies": {
"@tippy.js/react": "^3.1.1",
"firebase": "^10.14.1",
"lodash.throttle": "^4.1.1",
"prismjs": "^1.29.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-full-screen": "^1.1.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.2",
"react-split-pane": "^0.1.92",
"remark-gfm": "^4.0.0",
"styled-components": "^6.1.13",
"uuid": "^11.0.5"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/lodash.throttle": "^4.1.9",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.3",
"@types/react-test-renderer": "^19.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"firebase-tools": "^13.23.1",
"jsdom": "^26.0.0",
"postcss-styled-syntax": "^0.7.1",
"prettier": "^3.4.2",
"react-test-renderer": "^19.0.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended": "^14.0.1",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vitest": "^2.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/tu4mo/slidesdown.git"
},
"workspaces": [
"functions"
]
}