forked from reactive/data-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
80
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"release": "lerna publish",
"lint": "eslint --ext .ts,.tsx,.js",
"format": "eslint --fix \"packages/*/src/**/*.{js,ts,tsx}\"",
"clean": "lerna clean",
"build": "yarn build:types && lerna run build --stream",
"build:bundle": "lerna run build:bundle --stream",
"build:clean": "lerna run build:clean --stream",
"build:types": "yarn build:copy:ambient && ttsc --build",
"build:copy:ambient": "mkdir -p ./packages/normalizr/dist && cp ./packages/normalizr/src/schema.d.ts ./packages/normalizr/dist/schema.d.ts && mkdir -p ./packages/endpoint/lib && cp ./packages/endpoint/src/endpoint.d.ts ./packages/endpoint/lib/endpoint.d.ts",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "yarn test -- --ci",
"test:coverage": "yarn test -- --coverage",
"prepare": "yarn run build:types"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"extends @anansi/browserslist-config"
],
"devDependencies": {
"@anansi/babel-preset": "^1.2.6",
"@anansi/browserslist-config": "^1.0.1",
"@anansi/eslint-plugin": "^0.9.9",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@testing-library/react": "^10.4.5",
"@testing-library/react-hooks": "^3.3.0",
"@testing-library/react-native": "^5.0.3",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/react": "^16.9.43",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-jest": "^26.1.0",
"conventional-changelog-anansi": "^0.1.1",
"coveralls": "^3.1.0",
"core-js": "^3.6.5",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.2",
"cross-fetch": "^3.0.5",
"eslint": "^7.4.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"ignore-styles": "^5.0.1",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"nock": "^13.0.2",
"prettier": "^2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "^0.63.0",
"react-test-renderer": "^16.13.1",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.10",
"typescript": "^3.9.7",
"whatwg-fetch": "3.0.0"
},
"version": "0.0.0"
}