-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.06 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-keystone-asyncstore",
"version": "0.5.2",
"author": "Marcus Ekwall <[email protected]>",
"description": "An opinionated asynchronous store and container implementation for mobx-keystone.",
"license": "MIT",
"main": "src/index.ts",
"publishConfig": {
"main": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mekwall/mobx-keystone-asyncstore.git"
},
"bugs": {
"url": "https://github.com/mekwall/mobx-keystone-asyncstore/issues"
},
"scripts": {
"test": "jest",
"test-debug": "cross-env DEBUG='mobx-keystone:*' jest",
"build": "tsc -b tsconfig.build.json",
"lint": "eslint",
"lint-staged": "lint-staged",
"validate": "yarn lint && tsc --skipLibCheck --noEmit -p tsconfig.json",
"release": "semantic-release"
},
"peerDependencies": {
"mobx": "^5.15.4",
"mobx-keystone": "^0.45.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.7",
"@types/next-tick": "^1.0.0",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@yarnpkg/pnpify": "^2.1.0",
"commitlint": "^9.1.0",
"conventional-changelog-conventionalcommits": "^4.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"mobx": "^5.15.4",
"mobx-keystone": "^0.45.0",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
},
"dependencies": {
"debug": "^4.1.1",
"next-tick": "^1.1.0"
}
}