forked from total-typescript/advanced-patterns-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 828 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 828 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
31
32
{
"name": "typescript-generics-workshop",
"version": "1.0.0",
"main": "index.js",
"author": "Matt Pocock <mattpocockvoice@gmail.com>",
"license": "GPL-2.0",
"devDependencies": {
"@types/node": "^18.6.5",
"chokidar": "^3.5.3",
"cross-fetch": "^3.1.5",
"typescript": "^4.8.3",
"vitest": "^0.21.1"
},
"scripts": {
"exercise": "node scripts/exercise.js",
"e": "npm run exercise",
"solution": "cross-env SOLUTION=true node scripts/exercise.js",
"s": "npm run solution"
},
"dependencies": {
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.186",
"@types/react": "^18.0.21",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"fast-glob": "^3.2.12",
"lodash": "^4.17.21",
"react": "^18.2.0",
"ts-toolbelt": "^9.6.0",
"zod": "^3.19.1"
}
}