|
1 | 1 | { |
2 | | - "name": "mobservable-react-typescript", |
| 2 | + "name": "mobx-react-typescript-boilerplate", |
3 | 3 | "version": "1.0.0", |
4 | | - "description": "Minimal boilerplate for a single-page app using React, TypeScript with JSX (TSX), and Visual Studio Code.", |
| 4 | + "description": "Boilerplate for MobX + React project with Typescript, ES6 compilation and hot code reloading", |
| 5 | + "scripts": { |
| 6 | + "start": "node server.js" |
| 7 | + }, |
5 | 8 | "repository": { |
6 | 9 | "type": "git", |
7 | | - "url": "https://github.com/mweststrate/mobservable-react-typescript.git" |
| 10 | + "url": "https://github.com/mobxjs/mobx-react-typescript-boilerplate.git" |
8 | 11 | }, |
9 | | - "main": "index.js", |
10 | | - "dependencies": { |
11 | | - "mobservable": "^1.1.4", |
12 | | - "mobservable-react": "^2.1.0", |
13 | | - "mobservable-react-devtools": "^2.0.4", |
14 | | - "react": "^0.14", |
15 | | - "react-dom": "^0.14" |
| 12 | + "keywords": [ |
| 13 | + "react", |
| 14 | + "reactjs", |
| 15 | + "boilerplate", |
| 16 | + "mobx", |
| 17 | + "starter-kit" |
| 18 | + ], |
| 19 | + "author": "Michel Weststrate <mweststrate@gmail.com> (http://github.com/mweststrate)", |
| 20 | + "license": "MIT", |
| 21 | + "bugs": { |
| 22 | + "url": "https://github.com/mobxjs/mobx/issues" |
16 | 23 | }, |
| 24 | + "homepage": "http://mobxjs.github.com/mobx", |
17 | 25 | "devDependencies": { |
18 | | - "browserify": "^11.1.0", |
19 | | - "http-server": "^0.8.5", |
20 | | - "tsify": "^0.13.1", |
21 | | - "typescript": "^1.6.2" |
| 26 | + "react-hot-loader": "^1.2.7", |
| 27 | + "ts-loader": "^0.8.1", |
| 28 | + "typescript": "^1.8.2", |
| 29 | + "webpack": "^1.9.6", |
| 30 | + "webpack-dev-server": "^1.8.2" |
22 | 31 | }, |
23 | | - "scripts": { |
24 | | - "build": "browserify src/index.tsx -p tsify -o public/js/bundle.js", |
25 | | - "start": "cd public && http-server -o index.html" |
26 | | - }, |
27 | | - "author": "Michel Weststrate", |
28 | | - "license": "MIT" |
| 32 | + "dependencies": { |
| 33 | + "mobx": "^2.0.0", |
| 34 | + "mobx-react": "^3.0.0", |
| 35 | + "mobx-react-devtools": "^4.0.0", |
| 36 | + "react": "^0.14.0", |
| 37 | + "react-dom": "^0.14.0" |
| 38 | + } |
29 | 39 | } |
0 commit comments