forked from project-error/npwd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "npwd",
"version": "0.1.0",
"description": "A FiveM phone resource, made in React & TypeScript",
"repository": "https://github.com/project-error/new-phone-who-dis",
"license": "CC-BY-NC-SA-4.0",
"private": true,
"workspaces": [
"apps/*"
],
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@octokit/core": "^3.6.0",
"esbuild": "^0.15.9",
"husky": "^7.0.4",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"turbo": "^1.6.1"
},
"scripts": {
"build": "turbo run build",
"web": "yarn workspace npwd-nui",
"dev:game": "turbo run dev:game",
"prepare": "husky install",
"format": "pretty-quick",
"format:staged": "pretty-quick --staged",
"postinstall": "husky install",
"generate:typings": "rollup --config rollup.config.js"
},
"husky": {
"hooks": {
"pre-commit": "npx run format:staged"
}
}
}