fe-boilerplate/package.json

39 lines
985 B
JSON
Raw Normal View History

2015-09-15 08:10:14 +02:00
{
2016-02-26 16:39:48 +01:00
"name": "mobx-react-typescript-boilerplate",
2015-09-15 08:10:14 +02:00
"version": "1.0.0",
2016-02-26 16:39:48 +01:00
"description": "Boilerplate for MobX + React project with Typescript, ES6 compilation and hot code reloading",
"scripts": {
"start": "node server.js"
},
2015-10-29 13:51:07 +01:00
"repository": {
"type": "git",
2016-02-26 16:39:48 +01:00
"url": "https://github.com/mobxjs/mobx-react-typescript-boilerplate.git"
2015-10-29 13:51:07 +01:00
},
2016-02-26 16:39:48 +01:00
"keywords": [
"react",
"reactjs",
"boilerplate",
"mobx",
"starter-kit"
],
"author": "Michel Weststrate <mweststrate@gmail.com> (http://github.com/mweststrate)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
2015-09-15 08:10:14 +02:00
},
2016-02-26 16:39:48 +01:00
"homepage": "http://mobxjs.github.com/mobx",
2015-09-15 08:10:14 +02:00
"devDependencies": {
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
2015-09-15 08:10:14 +02:00
},
2016-02-26 16:39:48 +01:00
"dependencies": {
"mobx": "^2.5.1",
"mobx-react": "^3.5.6",
"mobx-react-devtools": "^4.2.6",
"react": "^15.3.1",
"react-dom": "^15.3.1"
2016-02-26 16:39:48 +01:00
}
2015-09-15 08:10:14 +02:00
}