-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.4 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
{
"private": true,
"name": "@snailycad/live-map",
"version": "0.2.2",
"license": "MIT",
"author": {
"name": "Casper Iversen",
"url": "https://snailycad.org"
},
"scripts": {
"format:quick": "pretty-quick --staged --pattern \"packages/**/*.{js,jsx,ts,tsx,md,css,json}\"",
"format": "prettier --write \"**/*.{js,mjs,jsx,json,ts,tsx,yml,md}\"",
"lint": "eslint . --ext .ts,.tsx,.mjs",
"test-tsc": "tsc --noEmit",
"prepare": "husky install",
"postinstall": "husky install",
"dev": "nodemon",
"build": "node scripts/build-integrations.mjs",
"build:zip": "node scripts/zip-integrations.mjs"
},
"devDependencies": {
"@casperiv/eslint-config": "^8.0.0",
"@citizenfx/client": "^2.0.6736-1",
"@citizenfx/server": "^2.0.6736-1",
"@types/archiver": "^5.3.3",
"@types/node": "^20.8.0",
"@types/ws": "^8.5.6",
"@typescript-eslint/parser": "^6.7.3",
"dotenv": "^16.3.1",
"esbuild": "^0.19.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@octokit/action": "^6.0.6",
"archiver": "^6.0.1",
"socket.io": "^4.7.2"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2
}
}