-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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
40
41
42
43
44
45
46
{
"name": "simple-react-app-maker",
"version": "1.1.4",
"description": "A very simple collection of build scripts for React applications",
"bin": {
"simple-react-server": "./server.mjs",
"simple-react-publish": "./publish.mjs"
},
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"format": "prettier --cache --write ."
},
"keywords": [
"react",
"esbuild"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": "https://github.com/TrapTech/simple-react-app-maker",
"devDependencies": {
"prettier": "3.8.3",
"typescript": "6.0.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@esbuild-plugins/node-modules-polyfill": "0.2.2",
"@types/node": "25.6.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"browserslist": "^4.21.4",
"esbuild": "0.28.0",
"esbuild-plugin-browserslist": "3.0.2",
"esbuild-plugin-svgr": "^3.1.0",
"fs-extra": "11.3.4",
"jsdom": "29.1.0",
"node-emoji": "2.1.3",
"react-csp": "1.1.3"
}
}