-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "lecture-starter-typescript",
"version": "2.0.0",
"scripts": {
"setup": "npm install && npx simple-git-hooks",
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts .",
"lint:fix": "npm run lint -- --fix"
},
"license": "ISC",
"type": "module",
"devDependencies": {
"@commitlint/types": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"commitlint": "^19.3.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5",
"vite": "^5.3.1"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3"
},
"engines": {
"node": ">=18.18",
"npm": ">=8.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}