-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
{
"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 \"dist/test/**/*.e2e.js\""
},
"dependencies": {
"mime": "^4.1.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@types/node": "24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"typescript": "~6.0.3",
"ws": "^8.20.0"
},
"engines": {
"node": ">=24",
"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": {
"printWidth": 120,
"endOfLine": "auto"
}
}