-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 872 Bytes
/
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
{
"name": "react-state-tree",
"version": "0.1.2",
"main": "index.js",
"license": "MIT",
"author": "Lily Scott <me@suchipi.com>",
"repository": "suchipi/react-state-tree",
"keywords": [
"react",
"state",
"hooks",
"tree",
"redux",
"flux"
],
"dependencies": {
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.3",
"@types/lodash": "^4.14.149",
"immer": "^2.1.4",
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-testing-library": "^6.0.2",
"ts-jest": "^24.0.0",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"test": "jest"
}
}