-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
46
{
"name": "@devshareacademy/typescript-web-app-template",
"version": "0.2.2",
"description": "A basic Typescript web app project template that uses Vite.",
"scripts": {
"start": "vite --config config/vite.config.mjs",
"build": "tsc && vite build --config config/vite.config.mjs",
"serve": "vite preview --config config/vite.config.mjs",
"lint": "eslint ./src -c ./config/eslint.config.mjs",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"author": "scottwestover",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devshareacademy/typescript-web-app-template.git"
},
"homepage": "https://github.com/devshareacademy/typescript-web-app-template",
"devDependencies": {
"@devshareacademy/eslint-config": "0.1.1",
"@devshareacademy/prettier-config": "0.0.6",
"@devshareacademy/tsconfig": "0.0.3",
"@eslint/js": "9.32.0",
"auto-changelog": "2.5.0",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.3",
"globals": "16.3.0",
"prettier": "3.6.2",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0",
"vite": "7.0.6"
},
"resolutions": {},
"prettier": "@devshareacademy/prettier-config",
"volta": {
"node": "22.17.1",
"yarn": "1.22.11",
"pnpm": "8.14.3"
},
"auto-changelog": {
"template": "config/changelog-template.hbs",
"unreleased": true,
"commitLimit": false
}
}