-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.03 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
81
82
83
{
"name": "next-rosetta",
"version": "2.0.2",
"description": "Next.js + Rosetta with native i18n support",
"keywords": [
"next",
"nextjs",
"i18n",
"rosetta",
"translate"
],
"main": "dist/next-rosetta.js",
"module": "dist/next-rosetta.esm.js",
"typings": "dist/types/next-rosetta.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"author": "Patricio López Juri <patricio@flyyer.io>",
"repository": {
"type": "git",
"url": "https://github.com/useflyyer/next-rosetta.git"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"test": "echo 'no tests'"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
},
"dependencies": {
"rosetta": "^1.1.0"
},
"peerDependencies": {
"next": ">=10.0.0",
"react": ">=17.0.1"
},
"devDependencies": {
"@flyyer/eslint-config": "^3.0.6",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"husky": "^4.3.8",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"next": "^12.1.6",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.0",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.7.3"
}
}