27 lines
777 B
JSON
27 lines
777 B
JSON
{
|
|
"name": "mobservable-react-typescript",
|
|
"version": "1.0.0",
|
|
"description": "Minimal boilerplate for a single-page app using React, TypeScript with JSX (TSX), and Visual Studio Code.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mweststrate/mobservable-react-typescript.git"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"mobservable": "^1.0.0",
|
|
"mobservable-react": "^2.0.0",
|
|
"react": "^0.14",
|
|
"react-dom": "^0.14"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^11.1.0",
|
|
"mkdirp": "^0.5.1",
|
|
"typescript": "^1.6.2"
|
|
},
|
|
"scripts": {
|
|
"build": "mkdirp public/js/app && tsc && browserify ./temp/app.js -o public/js/app/bundle.js",
|
|
"start": "http-server"
|
|
},
|
|
"author": "Michel Weststrate",
|
|
"license": "MIT"
|
|
}
|