aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 5ee0a57cd2577e58c286f0897091db7b6f240ef3 (plain)
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
{
  "name": "riot-parcel-example",
  "version": "1.0.0",
  "author": "Jan Tuomi <jans.tuomi@gmail.com>",
  "license": "MIT",
  "repository": {
    "url": "https://github.com/jantuomi/riot-parcel-example",
    "type": "git"
  },
  "scripts": {
    "build": "riot src/components src/tags.js && parcel build --public-url=./ src/index.html",
    "start": "yarn watch",
    "watch": "yarn watch:riot & yarn watch:parcel",
    "watch:riot": "riot -w src/components src/tags.js",
    "watch:parcel": "parcel src/index.html"
  },
  "dependencies": {
    "less": "^3.0.1",
    "riot": "^3.7.4"
  },
  "devDependencies": {
    "babel-core": "^6.26.0",
    "parcel-bundler": "^1.6.2",
    "watch": "^1.0.2"
  }
}