-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "riduce",
"version": "0.0.27",
"description": "Get rid of your reducer boilerplate! Zero hassle state management that's typed, flexible and scalable.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Richard Ng",
"email": "hi@richard.ng",
"url": "https://github.com/richardcrng/"
},
"dependencies": {
"change-case": "^4.1.1",
"immer": "^3.1.2",
"lodash": "^4.17.15",
"object.fromentries": "^2.0.2",
"ramda": "^0.26.1",
"ramda-adjunct": "^2.23.0",
"set-value": ">=2.0.1",
"utility-types": "^3.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/richardcrng/riduce"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"prepublishOnly": "npm run build",
"test": "jest --watch --runInBand",
"test:types": "dts-jest"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@testing-library/react-hooks": "^3.7.0",
"@types/jest": "^26.0.10",
"@types/node": "^13.13.5",
"@types/ramda": "^0.27.4",
"@types/react": "^16.8.0 || ^17.0.0",
"babel-jest": "^26.3.0",
"coveralls": "^3.0.9",
"dts-jest": "^23.3.0",
"jest": "^26.4.2",
"react": "^16.8.0 || ^17.0.0",
"react-test-renderer": "^16.8.0 || ^17.0.0",
"redux": "^4.0.5",
"ts-jest": "^26.3.0",
"typescript": "^4.1.5",
"util": "^0.12.1"
}
}