base2020/package.json

33 lines
838 B
JSON
Raw Normal View History

{
2020-03-12 02:00:31 +00:00
"name": "base2020",
"version": "2.0.0",
2020-03-12 02:00:31 +00:00
"description": "base code for HTML5 games",
"private": true,
"scripts": {
2020-01-19 06:24:29 +00: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 17:52:28 +00:00
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"parcel-bundler": "^1.12.4",
2020-05-09 15:43:02 +00:00
"rimraf": "^3.0.2",
2020-11-06 17:52:28 +00:00
"sass": "^1.29.0",
"typescript": "^3.9.7"
2020-02-15 22:56:38 +00:00
},
"dependencies": {
2020-11-06 17:52:28 +00:00
"callbag": "^1.3.0",
2020-02-16 02:10:19 +00:00
"callbag-animation-frames": "^2.1.0",
2020-11-06 17:52:28 +00:00
"callbag-create": "^2.1.2",
2020-05-09 15:43:02 +00:00
"callbag-map": "^1.1.0",
2020-04-03 22:35:23 +00:00
"callbag-pipe": "^1.2.0",
2020-05-02 03:22:38 +00:00
"callbag-share": "^1.2.0",
2020-02-16 05:01:30 +00:00
"callbag-subscribe": "^1.5.1"
}
}