forked from project-error/npwd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 822 Bytes
/
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
{
"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",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@octokit/core": "^3.5.1",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3"
},
"scripts": {
"build": "lerna run build",
"prepare": "husky install",
"bootstrap": "lerna bootstrap",
"format": "pretty-quick",
"format:staged": "pretty-quick --staged",
"postinstall": "husky install && yarn bootstrap",
"test": "lerna run test"
},
"husky": {
"hooks": {
"pre-commit": "npx run format:staged"
}
}
}