-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 789 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 789 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
{
"name": "f",
"version": "1.0.0",
"description": "",
"targets": {
"default": {
"distDir": "./dist",
"engines": {
"browsers": ">= 50%"
}
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": ">= 16"
},
"scripts": {
"start": "npm run dev",
"dev": "parcel serve src/pages/*.html",
"build": "parcel build src/pages/*.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"parcel": "^2.10.2",
"posthtml-doctype": "^1.1.1",
"process": "^0.11.10"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}