forked from elierotenberg/react-prepare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "@webkom/react-prepare",
"version": "1.0.1",
"description": "Prepare you app state for async server-side rendering and more!",
"type": "module",
"main": "./dist/react-prepare.umd.cjs",
"module": "./dist/react-prepare.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint src/**/*.{js,ts,tsx}",
"lint:prettier": "prettier '**/*.{js,css,md,ts,tsx}' --check",
"build": "vite build && yarn build:types",
"build:types": "tsc -d --emitDeclarationOnly",
"test": "vitest run",
"coverage": "vitest run --coverage",
"make": "yarn run lint && yarn run ts && yarn run clean && yarn run build && yarn run test",
"prettier": "prettier '**/*.{js,css,md,ts,tsx,json}' --write",
"ts": "tsc --noEmit"
},
"repository": {
"url": "[email protected]:elierotenberg/react-prepare",
"type": "git"
},
"author": "Elie Rotenberg <[email protected]>",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^23.0.0",
"koa": "^2.14.2",
"node-fetch": "^3.3.2",
"prettier": "^3.1.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vitest": "^0.34.6"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.2 | ^17.0.0 | ^18.0.0"
}
}