-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"name": "dnd-generator",
"version": "0.6.0",
"private": true,
"type": "module",
"engines": {
"npm": ">=10.0.0",
"node": ">=22.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,css,json}\"",
"preview": "vite preview"
},
"dependencies": {
"copy-to-clipboard": "^3.3.3",
"jsoncrush": "^1.1.8",
"npc-generator": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript-plugin-css-modules": "^5.1.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"
}
}