-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-vuex-like",
"version": "0.0.6-alpha.0",
"description": "write react component like vue",
"keywords": [
"react-vue-like",
"react-vuex-like",
"react",
"vue"
],
"sideEffects": false,
"main": "es/index.js",
"module": "esm/index.js",
"typings": "types/index.d.ts",
"engines": {
"node": "> 6.9.1"
},
"files": [
"dist",
"esm",
"es",
"src",
"types"
],
"scripts": {
"build": "npm run build:types && npm run build:js && npm run build:es",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "cross-env BUILD_ENV=js babel src -d esm --extensions \".ts,.tsx\" --source-maps",
"build:es": "cross-env BUILD_ENV=es babel src -d es --extensions \".ts,.tsx\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gxlmyacc/react-vuex-like.git"
},
"author": "gxlmyacc",
"dependencies": {
"mobx": "^4.13.0",
"mobx-react": "^6.1.3"
},
"peerDependencies": {
"core-js": ">=2",
"mobx": "^4.13.0",
"mobx-react": "^6.1.3"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.7.4",
"@types/node": "^13.1.0",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-react-app": "^5.0.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.0",
"typescript": "^3.7.3"
}
}