forked from louismerlin/repfl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 694 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 694 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
{
"name": "repfl",
"version": "0.0.0",
"license": "MIT",
"private": true,
"homepage": "https://repfl.ch",
"dependencies": {
"concrete.css": "^1.3.0",
"normalize.css": "^8.0.1",
"preact": "^10.1.0",
"reeq": "^1.6.0"
},
"scripts": {
"start": "parcel src/index.html --port 3000 --hmr-port 1234",
"lint": "standard --fix",
"predeploy": "rimraf dist && parcel build src/index.html --experimental-scope-hoisting",
"deploy": "echo 'repfl.ch' > ./dist/CNAME && gh-pages -d dist"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"gh-pages": "^2.1.1",
"parcel": "^1.12.4",
"rimraf": "^3.0.0",
"standard": "^14.3.1"
}
}