fe-boilerplate/package.json

39 lines
1,000 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": {
"@types/react-dom": "^16.9.2",
"awesome-typescript-loader": "^5.2.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.8.2"
2015-09-15 08:10:14 +02:00
},
2016-02-26 16:39:48 +01:00
"dependencies": {
"mobx": "^5.14.2",
"mobx-react": "^6.1.4",
"react": "^16.10.2",
"react-dom": "^16.10.2"
2016-02-26 16:39:48 +01:00
}
2015-09-15 08:10:14 +02:00
}