-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 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
{
"name": "mobx-query",
"version": "0.4.3",
"description": "Generate mobx models based on a model and action schema",
"main": "./mobx.js",
"types": "./mobx.d.ts",
"bin": {
"mobx-query": "bin/cli"
},
"scripts": {
"format": "prettier --write **/*.{js,ts,tsx,json}",
"build": "./build_lib.sh",
"prepublishOnly": "yarn test && yarn build",
"scaffold": "env NODE_ENV=test ./bin/cli scaffold --force --out tests/models",
"test": "yarn scaffold && jest",
"generate": "yarn peggy --plugin ts-pegjs --extra-options-file pegconfig.json -o src/utils/parser.ts --cache src/utils/parser.pegjs"
},
"files": [
"mobx.js",
"mobx.d.ts",
"build",
"dist",
"LICENSE",
"readme.md",
"bin"
],
"license": "MIT",
"dependencies": {
"cac": "^6.7.3",
"colors": "1.4.0",
"ejs": "^3.1.6",
"execa": "5.1.1",
"fs-jetpack": "^4.1.1",
"ora": "5.4.1",
"pluralize": "^8.0.0",
"which": "^2.0.2"
},
"peerDependencies": {
"mobx": "^6.2.0",
"mobx-react": "^7.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.3",
"@testing-library/react": "^13.3.0",
"@types/ejs": "^3.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.10",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"jest": "^27.0.5",
"mobx": "^6.3.2",
"mobx-react": "^7.1.0",
"peggy": "^1.2.0",
"prettier": "^2.3.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"rollup": "^2.53.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"ts-pegjs": "^1.1.1",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}