forked from appjudo/mobx-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.12 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
{
"name": "mobx-orm",
"version": "0.4.0",
"description": "MobX-based ORM for API resources and other asynchronous data sources",
"author": "AppJudo Inc.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "./node_modules/.bin/rollup -c",
"files": [
"dist"
],
"scripts": {
"build": "npx rollup -c",
"start": "npx rollup -c -w",
"prepare": "yarn run build",
"test": "npx jest",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"tsc": "npx tsc --project tsconfig.json",
"lint": "npx esw -w --clear --cache --color . --ext .js --ext .jsx --ext .ts --ext .tsx --watch",
"lint:once": "npx eslint . --ext .js --ext .jsx --ext .ts --ext .tsx",
"lint:fix": "npx eslint . --ext .js --ext .jsx --ext .ts --ext .tsx --fix"
},
"dependencies": {
"@types/lodash": "^4.14.138",
"@types/pluralize": "0.0.29",
"@types/qs": "^6.5.3",
"dotenv": "^8.1.0",
"lodash": "^4.17.15",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"pluralize": "^8.0.0",
"qs": "^6.8.0",
"ts-jest": "^24.0.2",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.0",
"whatwg-fetch": "2.0.4"
},
"peerDependencies": {
"mobx": "^4.10.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-watch": "^6.0.1",
"mobx": "^4.10.0",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-multi-input": "^1.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"typescript": "^3.7.2"
}
}