forked from Johannes-Schiel/ud-basic-webdev-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "ud-basic-webdev-setup",
"private": false,
"version": "2.6.0",
"discription": "Bei diesem Repository handelt es sich um meine \"Test-/Entwicklungsumgebung\" für alle meine YouTube Tutorials. Sie basiert auf Vite, JS und SCSS",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest --run",
"lint": "eslint ./src --ext .js,.ts",
"coverage": "vitest --coverage",
"format": "prettier --write \"src/**/*.js\" \"src/**/*.html\" \"src/**/*.scss\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"autoprefixer": "^10.4.16",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-prettier": "^5.0.1",
"jsdom": "^23.0.1",
"sass": "^1.69.5",
"typescript": "^5.3.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.0",
"vitest": "^0.34.6",
"vite": "^5.0.4"
}
}