-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"name": "pefcl",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/project-error/pefcl",
"author": "projecterror <[email protected]>",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"prepare": "husky install",
"postinstall": "husky install && yarn setup",
"translations:generate": "yarn i18next",
"translations:generate-index": "node ./scripts/generateLocales.js",
"translations:pull": "localazy download",
"translations:push": "localazy upload -w $LOCALAZY_WRITE_KEY -r $LOCALAZY_READ_KEY",
"setup": "yarn nx run-many --target=setup --all && yarn translations:pull && yarn translations:generate-index",
"build": "yarn nx run-many --target=build --all",
"lint": "yarn nx run-many --target=lint --all",
"dev": "yarn nx run-many --target=dev --all",
"tsc": "yarn nx run-many --target=tsc --all",
"dev:ingame": "yarn nx run-many --target=dev:ingame --all",
"dev:mobile": "yarn nx run-many --target=dev:mobile --all",
"pre-release": "yarn build && sh ./scripts/prerelease.sh",
"release": "yarn build && sh ./scripts/release.sh"
},
"devDependencies": {
"@citizenfx/client": "^2.0.5754-1",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@localazy/cli": "^1.6.0",
"@types/node": "^18.6.1",
"axios": "^0.26.1",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"nx": "14.4.3",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3"
},
"dependencies": {
"i18next-parser": "^6.0.0"
}
}