-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 941 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 941 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": "github-spa-demo",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:willin/github-spa-demo.git",
"author": "Willin Wang <willin@willin.org>",
"scripts": {
"start": "parcel src/index.html --no-cache",
"compile": "NODE_ENV=production parcel build src/index.html -d build/ --public-url /github-spa-demo/build --no-cache",
"build": "rm -rf build && npm run compile && mv build/index.html index.html && cp index.html 404.html",
"lint": "eslint src --fix",
"test": "npm run lint && npm run build"
},
"license": "MIT",
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.15.0",
"eslint-config-dwing": "^1.2.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-jsx": "^0.0.2",
"parcel-bundler": "^1.4.1"
},
"dependencies": {
"@hyperapp/router": "^0.4.1",
"hyperapp": "^1.0.1"
}
}