-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 876 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 876 Bytes
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
{
"name": "typescriptpokedex",
"version": "1.0.0",
"description": "This is the [Build a Pokedex in TypeScript project](https://www.boot.dev/lessons/002241a8-2fa9-44c9-a4d9-03bf6ef3a9bb) from [Boot.dev](https://www.boot.dev).",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest --run",
"build": "npx tsc",
"start": "node dist/main.js",
"dev": "npx tsc && node dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmert9008/typescriptPokedex.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmert9008/typescriptPokedex/issues"
},
"homepage": "https://github.com/mmert9008/typescriptPokedex#readme",
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.14"
}
}