forked from mobxjs/mobx-react-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "mobx-react-typescript-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for MobX + React project with Typescript, ES6 compilation and hot code reloading",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-typescript-boilerplate.git"
},
"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"
},
"homepage": "http://mobxjs.github.com/mobx",
"devDependencies": {
"@types/react": "^0.14.36",
"@types/react-dom": "^0.14.17",
"awesome-typescript-loader": "^2.2.4",
"typescript": "^2.0.3",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"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"
}
}