-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "preact-boilerplate",
"version": "2.3.0",
"description": "A minimal Preact boilerplate project, powered by Parcel.",
"source": "public/index.html",
"scripts": {
"start": "parcel --dist-dir build --port 3000 --open",
"build": "parcel build --dist-dir build"
},
"keywords": [
"preact",
"parcel-bundler",
"preact boilerplate"
],
"author": {
"name": "Safdar Jamal",
"url": "https://safdarjamal.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SafdarJamal/preact-boilerplate/issues"
},
"homepage": "https://github.com/SafdarJamal/preact-boilerplate#readme",
"dependencies": {
"preact": "^10.11.2"
},
"devDependencies": {
"parcel": "^2.7.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"alias": {
"preact/jsx-dev-runtime": "preact/jsx-runtime"
}
}