-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "interplay-rp-server",
"version": "2.2.1",
"scripts": {
"format": "prettier --write {src,scripts}/**/*.ts",
"build:production": "rollup -c ./scripts/rollup.config.js",
"build": "rollup -c ./scripts/rollup.config.js",
"watch": "rollup -w -c ./scripts/rollup.config.js",
"install:modules": "npm i && cd ./src/ui && npm i"
},
"engines": {
"node": ">=16.11.0"
},
"devDependencies": {
"@altv/types-client": "^16.2.6",
"@altv/types-natives": "^16.2.1",
"@altv/types-server": "^16.2.4",
"@altv/types-shared": "^16.2.3",
"@altv/types-webview": "^16.2.1",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^4.0.0",
"@swc/core": "^1.6.6",
"@swc/helpers": "^0.5.3",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^17.0.23",
"@types/node-telegram-bot-api": "^0.64.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.166.0",
"builtin-modules": "^3.2.0",
"fs-jetpack": "^4.2.0",
"prettier": "^2.5.0",
"rollup": "^2.60.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"rollup-plugin-purs": "^1.0.38",
"rollup-plugin-rename": "^1.0.1",
"rollup-plugin-swc3": "^0.1.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-tsconfig-paths": "^1.0.15",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.2"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.3",
"abort-controller": "^3.0.0",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"colorette": "^2.0.16",
"cron": "^3.1.7",
"dotenv": "^16.0.0",
"events": "^3.3.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"i18n": "^0.15.1",
"jsonwebtoken": "^9.0.2",
"mathjs": "^11.9.1",
"mysql2": "^3.5.1",
"node-telegram-bot-api": "^0.66.0",
"nodemailer": "^6.9.4",
"pg": "^8.12.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.32.1",
"sequelize-typescript": "^2.1.5",
"sha256": "^0.2.0",
"telegram-logger-ts": "^2.1.1",
"three": "^0.166.1",
"uuidv4": "^6.2.13"
},
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"endOfLine": "lf",
"printWidth": 150,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true,
"arrowParens": "always",
"bracketSpacing": true,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2,
"useTabs": true
}
}
]
}
}