base2020/package.json

32 lines
796 B
JSON
Raw 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",
"tsc:check": "tsc --noEmit"
},
"author": "Tangent 128",
"license": "ISC",
"devDependencies": {
2020-05-09 11:43:02 -04:00
"@babel/core": "^7.9.6",
2020-03-24 23:48:38 -04:00
"@babel/plugin-proposal-class-properties": "^7.8.3",
"parcel-bundler": "^1.12.4",
2020-05-09 11:43:02 -04:00
"rimraf": "^3.0.2",
"sass": "^1.26.5",
2020-03-11 22:00:31 -04:00
"typescript": "^3.8.3"
2020-02-15 17:56:38 -05:00
},
"dependencies": {
2020-02-15 21:10:19 -05:00
"callbag": "^1.2.0",
"callbag-animation-frames": "^2.1.0",
"callbag-create": "^2.1.0",
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"
}
}