forked from mobxjs/mobx-react-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"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 <[email protected]> (http://github.com/mweststrate)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "http://mobxjs.github.com/mobx",
"devDependencies": {
"@types/react-dom": "^16.0.9",
"awesome-typescript-loader": "^5.2.1",
"typescript": "^3.1.3",
"webpack": "^4.22.0",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"mobx": "^5.5.2",
"mobx-react": "^5.3.5",
"mobx-react-devtools": "^6.0.3",
"react": "^16.5.2",
"react-dom": "^16.5.2"
}
}