-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 836 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
{
"name": "create-react",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:react": "nodemon --watch src --exec tsx src/simpleReact.ts",
"start": "nodemon --watch src --exec tsx src/index.ts",
"build": "esbuild src/index.ts --bundle --format=esm --outfile=dist/bundle.js"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"packageManager": "pnpm@10.6.1+sha512.40ee09af407fa9fbb5fbfb8e1cb40fbb74c0af0c3e10e9224d7b53c7658528615b2c92450e74cfad91e3a2dcafe3ce4050d80bda71d757756d2ce2b66213e9a3",
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.1.3",
"esbuild": "^0.25.4"
},
"dependencies": {
"nodemon": "^3.1.10",
"tsx": "^4.19.4"
}
}