base2020/package.json

33 lines
838 B
JSON
Raw Permalink Normal View History

{
2020-03-11 22:00:31 -04:00
"name": "base2020",
"version": "2.0.0",
2020-03-11 22:00:31 -04:00
"description": "base code for HTML5 games",
"private": true,
"scripts": {
2020-01-19 01:24:29 -05:00
"build": "parcel build src/index.html",
"clean": "rimraf .cache dist",
"live": "parcel src/index.html",
"watch": "parcel watch src/index.html",
"check": "tsc --noEmit"
},
"author": "Tangent 128",
"license": "ISC",
"devDependencies": {
2020-11-06 12:52:28 -05:00
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"parcel-bundler": "^1.12.4",
2020-05-09 11:43:02 -04:00
"rimraf": "^3.0.2",
2020-11-06 12:52:28 -05:00
"sass": "^1.29.0",
"typescript": "^3.9.7"
2020-02-15 17:56:38 -05:00
},
"dependencies": {
2020-11-06 12:52:28 -05:00
"callbag": "^1.3.0",
2020-02-15 21:10:19 -05:00
"callbag-animation-frames": "^2.1.0",
2020-11-06 12:52:28 -05:00
"callbag-create": "^2.1.2",
2020-05-09 11:43:02 -04:00
"callbag-map": "^1.1.0",
2020-04-03 18:35:23 -04:00
"callbag-pipe": "^1.2.0",
2020-05-01 23:22:38 -04:00
"callbag-share": "^1.2.0",
2020-02-16 00:01:30 -05:00
"callbag-subscribe": "^1.5.1"
}
}