fe-boilerplate/package.json

30 lines
851 B
JSON
Raw Normal View History

2015-09-15 08:10:14 +02:00
{
"name": "mobservable-react-typescript",
2015-09-15 08:10:14 +02:00
"version": "1.0.0",
"description": "Minimal boilerplate for a single-page app using React, TypeScript with JSX (TSX), and Visual Studio Code.",
2015-10-29 13:51:07 +01:00
"repository": {
"type": "git",
"url": "https://github.com/mweststrate/mobservable-react-typescript.git"
},
2015-09-15 08:10:14 +02:00
"main": "index.js",
"dependencies": {
2015-12-14 13:08:26 +01:00
"mobservable": "^1.1.4",
"mobservable-react": "^2.1.0",
"mobservable-react-devtools": "^2.0.4",
2015-10-29 13:51:07 +01:00
"react": "^0.14",
"react-dom": "^0.14"
2015-09-15 08:10:14 +02:00
},
"devDependencies": {
"browserify": "^11.1.0",
2015-12-14 13:08:26 +01:00
"http-server": "^0.8.5",
"tsify": "^0.13.1",
"typescript": "^1.6.2"
2015-09-15 08:10:14 +02:00
},
"scripts": {
2015-12-14 16:23:41 +01:00
"build": "browserify src/index.tsx -p tsify -o public/js/bundle.js",
2015-12-14 13:08:26 +01:00
"start": "cd public && http-server -o index.html"
2015-09-15 08:10:14 +02:00
},
2015-10-29 13:51:07 +01:00
"author": "Michel Weststrate",
"license": "MIT"
2015-09-15 08:10:14 +02:00
}