-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
79 lines (79 loc) · 2.54 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
{
"name": "suspend-react",
"version": "0.0.0-semantic-release",
"description": "Integrate React Suspense into your apps",
"main": "index.cjs.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"keywords": [
"react",
"suspense",
"resource",
"asset"
],
"author": "Paul Henschel",
"license": "MIT",
"repository": "pmndrs/suspend-react",
"homepage": "https://github.com/pmndrs/suspend-react#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"scripts": {
"build": "rollup -c",
"postbuild": "tsc --emitDeclarationOnly && npm run copy",
"copy": "copyfiles package.json readme.md LICENSE dist && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.husky=undefined; this.prettier=undefined; this.jest=undefined; this['lint-staged']=undefined;\"",
"release": "semantic-release",
"test": "echo no tests yet"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "7.16.0",
"@babel/plugin-transform-parameters": "7.16.0",
"@babel/plugin-transform-runtime": "7.16.0",
"@babel/plugin-transform-template-literals": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"json": "^11.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"react": "^17.0.1",
"rollup": "^2.59.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^21.0.5",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": ">=17.0"
},
"dependencies": {}
}