This repository was archived by the owner on Dec 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 KB
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": "i18next-webpack-backend",
"version": "0.1.1",
"description": "Backend JSON loader for webpack applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"start": "node dist/cli/main.js",
"test": "tsc -p . --noEmit && eslint \"src/**/*.ts*\" -f visualstudio"
},
"author": "ReactWay <dev@reactway.com> (https://github.com/reactway)",
"contributors": [
"Eimantas Zubavičius <eimantas.zubavicius@quatrodev.com> (https://github.com/EimantasZubavicius)"
],
"license": "MIT",
"files": [
"dist",
"docs",
"*.js",
"*.d.ts",
"!*.config.js",
"!dist/_debug*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/reactway/i18next-webpack-backend.git"
},
"bugs": {
"url": "https://github.com/reactway/i18next-webpack-backend/issues"
},
"homepage": "https://github.com/reactway/i18next-webpack-backend#readme",
"devDependencies": {
"@reactway/eslint-config": "^1.0.3",
"@types/lodash.set": "^4.3.6",
"@types/webpack-env": "^1.15.1",
"eslint": "^6.8.0",
"ts-node": "^8.7.0",
"typescript": "^3.8.3",
"prettier": "^1.19.1"
},
"peerDependencies": {
"@types/webpack-env": "^1.15.1"
},
"dependencies": {
"i18next": "^19.3.3",
"lodash.set": "^4.3.2",
"tslib": "^1.11.1"
}
}