-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.7 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": "ragemp-typescript",
"version": "2.2.1",
"scripts": {
"format": "prettier --write {src,scripts}/**/*.ts",
"build:production": "rollup -c ./scripts/rollup.config.js --environment NODE_ENV:production",
"build": "rollup -c ./scripts/rollup.config.js",
"watch": "rollup -w -c ./scripts/rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeonardSSH/ragemp-typescript.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LeonardSSH/ragemp-typescript/issues"
},
"homepage": "https://github.com/LeonardSSH/ragemp-typescript#readme",
"devDependencies": {
"@ragempcommunity/types-client": "^2.0.2",
"@ragempcommunity/types-server": "^2.0.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^4.0.0",
"@swc/core": "^1.3.37",
"@swc/helpers": "^0.3.2",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^11.0.1",
"@types/isomorphic-fetch": "^0.0.36",
"@types/mocha": "^10.0.1",
"@types/mysql": "^2.15.21",
"@types/node": "^17.0.45",
"@types/node-wit": "^6.0.1",
"builtin-modules": "^3.2.0",
"fs-jetpack": "^4.2.0",
"prettier": "^2.5.0",
"rollup": "^2.60.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.9.5"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.13",
"@mui/styled-engine-sc": "^5.11.11",
"@react-icons/all-files": "^4.1.0",
"@sentry/browser": "^7.34.0",
"@sentry/tracing": "^7.34.0",
"@types/bcryptjs": "^2.4.2",
"@types/cron": "^2.0.0",
"axios": "^1.2.3",
"bcryptjs": "^2.4.3",
"colorette": "^2.0.16",
"cron": "^2.2.0",
"crypto": "^1.0.1",
"debug": "^4.3.4",
"discord.js": "^12.5.3",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"mysql": "^2.18.1",
"node-wit": "^6.6.0",
"rage-rpc": "^0.4.0",
"react-icons": "^4.8.0",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.9",
"whatwg-url": "^12.0.0",
"wit-js": "^0.0.1"
},
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"endOfLine": "lf",
"printWidth": 150,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
}
}