-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.41 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
{
"name": "react-ssr-data-loader",
"version": "2.0.0-next.4",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"sideEffects": false,
"repository": "https://github.com/sevenwestmedia/react-ssr-data-loader",
"license": "MIT",
"scripts": {
"build:cjs": "tsc -p tsconfig.build.json --outDir ./dist/cjs",
"build:esm": "tsc -p tsconfig.build.json --module es2015 --outDir ./dist/esm",
"build": "yarn build:cjs && yarn build:esm",
"lint": "eslint --ext .js,.ts .",
"lint:prettier": "prettier --write \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"test": "jest",
"test:watch": "jest --watch",
"test:update-snapshots": "jest -u",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"verify": "yarn build && yarn lint && yarn test",
"release": "yarn verify && changeset publish"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"cuid": "^2.1.8",
"hash-sum": "^2.0.0",
"is-promise": "^4.0.0",
"promise-completion-source": "^1.0.0",
"use-force-update": "^1.0.7"
},
"peerDependencies": {
"react": "^16.8.0",
"tslib": "^2.0.0",
"typescript-log": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.11.1",
"@types/cuid": "^1.3.1",
"@types/enzyme": "^3.10.7",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/hash-sum": "^1.0.0",
"@types/is-promise": "^2.1.0",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.54",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-wanews-base": "^2.2.0",
"eslint-plugin-expect-type": "^0.0.5",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.4.3",
"tslib": "^2.0.3",
"typescript": "^4.0.5",
"typescript-log": "^2.0.0"
}
}