-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1015 Bytes
/
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
{
"name": "typescript-wizard",
"description": "Knowledge bank for TypeScript",
"version": "1.0.0",
"scripts": {
"build": "swc examples -d build",
"build-dev": "npm run build && node --inspect",
"dev": "nodemon --ext ts --exec \"npm run build-dev\"",
"start": "npm run build && node $PATH",
"ts-watch": "tsc -w",
"ts-dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmatu/typescript-knowledge-bank.git"
},
"dependencies": {
"@type-challenges/utils": "^0.1.1",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.7.4",
"zod": "^3.18.0"
},
"keywords": [],
"author": "Ryszard Matula",
"license": "ISC",
"homepage": "https://github.com/rmatu/typescript-knowledge-bank#readme",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.233",
"@swc/helpers": "^0.4.6",
"@types/react": "^18.0.15",
"nodemon": "^2.0.19"
}
}