-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 907 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 907 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
33
34
35
36
37
38
39
{
"name": "typescript_cookbook",
"version": "1.0.0",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./commonJS/index.cjs"
}
},
"main": "./commonjs/index.cjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@tsconfig/strictest": "^2.0.8",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"@types/react": "^19.2.2",
"preact": "^10.27.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"undici-types": "^7.16.0"
},
"dependencies": {
"axios": "^1.13.2",
"deno": "^2.5.6",
"express": "^5.2.1",
"react": "^19.2.0"
}
}