-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "@codingame/json-schema-l10n",
"version": "0.0.0-semantic-release",
"description": "Tool to handle localization in JSON schema",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc",
"lint": "eslint --ext .ts,.tsx src/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/CodinGame/json-schema-l10n"
},
"moduleResolution": "node",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"release": {
"extends": "@codingame/semantic-release-config-github"
},
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"json-schema": "^0.4.0"
},
"devDependencies": {
"@codingame/commitlint-config-codingame": "^1.0.10",
"@codingame/eslint-config": "^1.1.10",
"@codingame/eslint-config-react": "^1.0.2",
"@codingame/semantic-release-config-github": "^1.0.0",
"@codingame/tsconfig": "^1.1.1",
"@commitlint/cli": "^18.6.1",
"@types/deep-equal": "^1.0.4",
"@types/jest": "^29.5.12",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "18.2.55",
"@types/react-dom": "^18.2.19",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "3.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"volta": {
"node": "20.10.0",
"npm": "10.4.0"
}
}