-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
50 lines (50 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
50
{
"name": "mobx-persist",
"version": "0.4.1",
"description": "create and persist mobx stores",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "node server.js",
"tsc": "shx rm -rf lib && tsc -p config",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinqy520/mobx-persist.git"
},
"keywords": [
"mobx",
"store",
"persist",
"mobx-persist"
],
"author": "Huang Qi",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinqy520/mobx-persist/issues"
},
"homepage": "https://github.com/pinqy520/mobx-persist#readme",
"dependencies": {
"serializr": "^1.0.0"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^10.0.0",
"@types/react": "^16.4.0",
"@types/react-dom": "^16.0.0",
"awesome-typescript-loader": "^3.2.1",
"mobx": "^4.0.0",
"mobx-react": "^5.0.0",
"mobx-react-devtools": "^5.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^4.0.0",
"shx": "^0.2.2",
"typescript": "^2.4.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}