forked from abstractFlo/atlas-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "gamemode",
"version": "1.0.0",
"private": true,
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"watch": "rollup -cw",
"format": "prettier --write resources/**/*.{ts,js}",
"lint": "eslint resources --ext ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@abstractflo/atlas-client": "^2.1.16",
"@abstractflo/atlas-server": "^2.1.16",
"@abstractflo/atlas-shared": "^2.1.16",
"@altv/types-client": "^1.8.0",
"@altv/types-natives": "^1.4.2",
"@altv/types-server": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"typeorm": "^0.2.34"
},
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"tabWidth": 2,
"useTabs": false,
"printWidth": 140,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"quoteProps": "as-needed"
}
}