-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "dnd-generator",
"version": "0.5.0",
"private": true,
"type": "module",
"engines": {
"npm": ">=9.0.0 <10.0.0",
"node": ">=18.0.0 <21.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"tsc": "tsc -p tsconfig.json && tsc -p cypress/tsconfig.json",
"cypress:open": "cypress open",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettyp": "prettier --write \"./src/**/*.{ts,tsx,scss,json}\"",
"preview": "vite preview"
},
"dependencies": {
"bootstrap": "~5.2.3",
"copy-to-clipboard": "^3.3.3",
"jsoncrush": "^1.1.8",
"npc-generator": "^1.0.2",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.2.0",
"sass": "^1.62.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.1.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.0.0",
"cypress": "^13.3.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^5.0.2",
"vite": "^4.3.2"
}
}