-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.53 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
84
85
86
{
"name": "locale-resource-editor",
"description": "This package provides a way to comfortably review and edit your localisation resources.",
"version": "1.1.8",
"main": "index.js",
"homepage": "https://github.com/tkvlnk/locale-resource-editor",
"repository": {
"type": "git",
"url": "git+https://github.com/tkvlnk/locale-resource-editor.git"
},
"author": {
"name": "Tit Kovalenko",
"email": "t.a.kvlnk@gmail.com"
},
"keywords": [
"locale",
"localization",
"i18n",
"translate",
"translation"
],
"license": "MIT",
"bin": {
"lre": "bin.ts"
},
"scripts": {
"start": "ts-node bootstrap.ts",
"test": "yarn run typecheck && yarn run lint && jest",
"build": "tsc -p tsconfig.build.json",
"postinstall": "yarn build",
"typecheck": "tsc --noEmit",
"lint": "yarn run lint:style && yarn run lint:code",
"lint:fix": "yarn run lint:style:fix && yarn run lint:code:fix",
"lint:code": "eslint \"**/*.{ts,tsx}\" --max-warnings 0",
"lint:code:fix": "yarn run lint:code --fix",
"lint:style": "stylelint \"**/*.{css,scss}\"",
"lint:style:fix": "yarn run lint:style --fix"
},
"dependencies": {
"@tkvlnk/configs": "git+https://github.com/tkvlnk/configs.git#2.1.7",
"@types/express": "^4.17.13",
"@types/file-saver": "^2.0.3",
"@types/flat": "^5.0.2",
"@types/json-stable-stringify": "^1.0.33",
"@types/lodash.clonedeep": "^4.5.6",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/webpack-dev-middleware": "^5.0.2",
"@types/yargs": "^17.0.2",
"body-parser": "^1.19.0",
"constate": "^3.3.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"flat": "^5.0.2",
"html-webpack-plugin": "^5.3.2",
"identity-obj-proxy": "^3.0.0",
"json-stable-stringify": "^1.0.1",
"lodash.clonedeep": "^4.5.0",
"normalize.css": "^8.0.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.21.1",
"recoil": "^0.4.1",
"sass": "^1.38.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-dev-middleware": "^5.0.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"simple-git-hooks": "^2.6.1",
"stylelint": "^13.13.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1"
}
}