-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
40
41
42
43
{
"name": "@makeflow/react-utils",
"version": "0.2.3",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf bld && tsc --project src/library",
"lint": "eslint src/library --ext .ts",
"test": "yarn build && yarn lint"
},
"main": "bld/library/index.js",
"types": "bld/library/index.d.ts",
"files": [
"src/library/**/*.ts",
"bld/library",
"!*.tsbuildinfo"
],
"peerDependencies": {
"mobx-react": "6",
"react": "16.13"
},
"devDependencies": {
"@magicspace/configs": "^0.2.4",
"@magicspace/eslint-plugin": "^0.1.23",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"eslint": "^7.0.0",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"tslang": "^0.1.22"
}
}