fe-boilerplate/package.json

41 lines
1 KiB
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": {
"@types/react": "^0.14.36",
"@types/react-dom": "^0.14.17",
"awesome-typescript-loader": "^2.2.4",
"typescript": "^2.0.3",
2016-02-26 16:39:48 +01:00
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
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
}