-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "vira-i18n-react",
"version": "1.0.4",
"description": "Internationalization project for ReactJS",
"main": "lib/index.js",
"module": "lib/index.js",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "npm run lint:code && npm run lint:style",
"lint:code": "eslint src/**/*.{js,ts,tsx} --fix --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Victin09/vira-i18n-react.git"
},
"keywords": [
"react",
"typescript",
"javascript"
],
"author": "viti",
"license": "ISC",
"bugs": {
"url": "https://github.com/Victin09/vira-i18n-react/issues"
},
"homepage": "https://github.com/Victin09/vira-i18n-react/#readme",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"prettier": "^2.2.1",
"rollup": "^2.26.11",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^3.9.7"
},
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"vira-i18n": "^1.0.3"
}
}