-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.58 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
{
"name": "ts-exercises-platform",
"author": "Wellington S. Almeida (@WellsSA)",
"version": "0.0.1",
"description": "A platform inspired by Lucas Santos (@lsantosdev | @kahosdoctor) to practice TypeScript",
"license": "MIT",
"homepage": "https://formacao-typescript.github.io/ts-exercises-platform/",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "VITE_BUILD_NUMBER=$(date +'%m%d.%H%M') tsc && vite build && cp build/index.html build/404.html",
"build:unsafe": "VITE_BUILD_NUMBER=$(date +'%m%d.%H%M') vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist",
"validate": "tsx ./scripts/validate.ts",
"validate:debug": "DEBUG=ts-exercises:validate npx tsx ./scripts/validate.ts",
"backend:dev": "cd ./backend && deno run -A --unstable-sloppy-imports --watch mod.ts"
},
"engines": {
"node": ">=18.19.0"
},
"dependencies": {
"animejs": "^3.2.2",
"classnames": "^2.5.1",
"debug": "^4.3.4",
"flowbite": "^2.2.1",
"flowbite-react": "^0.7.2",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"monaco-editor": "^0.45.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.0",
"react-toastify": "^9.1.3",
"state-pool": "^0.10.0",
"styled-components": "^6.1.1"
},
"devDependencies": {
"@types/animejs": "^3.1.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.6",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"flowbite-typography": "^1.0.3",
"gh-pages": "^6.1.1",
"path": "^0.12.7",
"postcss": "^8.4.34",
"prettier": "^3.3.3",
"sass": "^1.69.5",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-monaco-editor": "^1.1.0"
},
"packageManager": "[email protected]+sha512.af78262d7d125afbfeed740602ace8c5e4405cd7f4735c08feb327286b2fdb2390fbca01589bfd1f50b1240548b74806767f5a063c94b67e431aabd0d86f7774"
}