-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "mst-flow-pipe",
"version": "3.0.0",
"description": "A helper function for creating type-safe generators for mobx-state-tree",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "/~https://github.com/mikecann/flowPipe.git",
"author": "Mike Cann <mike.cann@gmail.com>",
"license": "MIT",
"scripts": {
"compile": "tsc --noEmit",
"barrel": "barrelsby --directory src --delete",
"build": "tsc",
"dev": "yarn concurrently -n build,test -c magenta,cyan \"yarn build -w\" \"yarn test\"",
"test": "yarn unit",
"unit": "jest -c ./jest.config.js",
"pretty": "prettier --write ./src/**/*.{ts,tsx}",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"all-contributors-cli": "^6.20.0",
"concurrently": "^6.0.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"mobx": "^6",
"mobx-state-tree": "^5"
}
}