-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.21 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
{
"name": "@gadgetinc/mobx-quick-tree",
"version": "0.7.8",
"description": "A mirror of mobx-state-tree's API to construct fast, read-only instances that share all the same views",
"source": "src/index.ts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "github:gadget-inc/mobx-quick-tree",
"license": "MIT",
"files": [
"README.md",
"dist/src/**/*"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:prettier": "prettier --check \"{spec,src}/**/*.{js,ts}\"",
"lint:eslint": "eslint --quiet --ext ts,tsx spec src",
"lint:fix": "prettier --write --check \"{spec,src}/**/*.{js,ts}\"; eslint --ext ts --fix spec src",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm run build",
"prerelease": "gitpkg publish",
"clean": "rm -rf *.0x *-v8.log",
"x": "ts-node --transpile-only"
},
"dependencies": {
"lodash.memoize": "^4.1.2",
"mobx": "^6.12.3",
"mobx-state-tree": "^6.0.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@codspeed/tinybench-plugin": "^3.1.0",
"@faker-js/faker": "^8.4.1",
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "^0.4.0",
"@swc/core": "^1.5.5",
"@swc/jest": "^0.2.36",
"@types/find-root": "^1.1.4",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/lodash.memoize": "^4.1.9",
"@types/node": "^20.12.11",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"conditional-type-checks": "^1.0.6",
"deep-freeze-es6": "^1.4.1",
"deoptigate": "^0.7.1",
"dexnode": "^1.2.2",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"find-root": "^1.1.0",
"flamebearer": "^1.1.3",
"fs-extra": "^11.2.0",
"globby": "^11.0.4",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"microtime": "^3.1.1",
"prettier": "^3.2.5",
"tinybench": "^2.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"yargs": "^17.7.2"
}
}