-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "native-esm-react",
"version": "1.0.0",
"private": true,
"description": "native esm react example",
"type": "module",
"scripts": {
"clean": "node scripts/clean.js",
"prebuild": "npm run clean",
"build": "tsc",
"start": "node scripts/start.js --live",
"preserver": "npm run build",
"server": "node --enable-source-maps dist/server/main.js",
"pretest": "npm run build",
"test": "node --test --enable-source-maps"
},
"dependencies": {
"mime": "^4.0.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "22",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.5.13",
"playwright": "^1.49.1",
"typescript": "~5.7.3",
"ws": "^8.18.0"
},
"engines": {
"node": ">=22",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AviVahl/native-esm-react.git"
},
"keywords": [
"esm",
"react",
"example"
],
"author": "Avi Vahl",
"license": "MIT",
"bugs": {
"url": "https://github.com/AviVahl/native-esm-react/issues"
},
"homepage": "https://github.com/AviVahl/native-esm-react#readme",
"prettier": {}
}