-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "reto",
"version": "0.9.3",
"main": "index.js",
"repository": "https://github.com/awmleer/reto",
"description": "React store with hooks.",
"author": "awmleer <awmleer@sparker.xyz>",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": "^16.8 || ^17.0"
},
"scripts": {
"build": "gulp build",
"test": "jest",
"lint": "tslint -p tsconfig.json",
"umd": "rollup --config rollup.config.js"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.7",
"@types/jest": "^24.0.18",
"@types/node": "^10.12.24",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-test-renderer": "^16.8.0",
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"jest": "^24.1.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-test-renderer": "^16.8.0",
"rollup": "^1.21.4",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.4.5"
},
"dependencies": {}
}