-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "use-next-intl-format",
"version": "2.0.3",
"description": "React Hook for creating memoized native instances of Intl for Next.js i18n",
"author": "lopezjurip",
"license": "MIT",
"repository": "useflyyer/use-next-intl-format",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"sideEffects": false,
"engines": {
"node": ">=12",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c && tsc -d --emitDeclarationOnly --noEmit false --declarationDir dist",
"start": "rollup -c -w",
"prepare": "yarn run build"
},
"dependencies": {},
"peerDependencies": {
"next": ">=10.0.0",
"react": ">=16.9.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/runtime": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@rollup/plugin-url": "^7.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.7",
"@types/react": "^18.0.17",
"cross-env": "^7.0.3",
"gh-pages": "^4.0.0",
"next": "^12.2.5",
"react": "^18.2.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"rollup": "^2.78.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}