-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "riot-parcel-starter",
"version": "1.0.0",
"description": "Boilerplate for a simple Riot project using Parcel.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/VladimirMarko/riot-parcel-starter"
},
"scripts": {
"start": "[ -d node_modules ] || npm install && npm run watch",
"build": "npm run build:riot & npm run build:parcel",
"build:riot": "riot --ext tag.html app/ app/tags.js",
"build:parcel": "parcel build index.html",
"watch": "npm run watch:riot & npm run watch:parcel",
"watch:riot": "riot --ext tag.html -w app/ app/tags.js",
"watch:parcel": "parcel index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"riot",
"parcel",
"starter"
],
"author": "Vladimir Marko",
"license": "ISC",
"dependencies": {
"riot": "^3.13.1"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"parcel-bundler": "^1.10.3"
}
}