forked from Underground-Roleplay/framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 886 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
31
32
33
34
{
"name": "urp-framework",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Underground-Roleplay/framework.git",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "nodemon",
"prettier-format": "prettier --config .prettierrc --ignore-path .prettierignore \"resources/**/*.js\" --write"
},
"husky": {
"hooks": {
"pre-commit": "npm run-script prettier-format && git add ."
}
},
"dependencies": {
"altv-pkg": "^1.2.0",
"i18n": "^0.13.3",
"node-fetch": "^3.1.1",
"nodemon": "^2.0.15",
"sjcl": "^1.0.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@altv/types-client": "^2.1.4",
"@altv/types-natives": "^1.4.4",
"@altv/types-server": "^2.3.1",
"@altv/types-shared": "^1.2.3",
"@altv/types-webview": "^1.0.2",
"husky": "^7.0.4",
"prettier": "2.5.1"
}
}