-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.39 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
100
101
102
{
"name": "tyman.tech",
"version": "1.0.0",
"description": "Tyman's personal website",
"main": "src/main.ts",
"scripts": {
"start": "yarn build && node -r source-map-support/register dist/main.js",
"test": "yarn build && yarn lint && yarn check-format",
"build": "yarn rimraf dist && yarn tsc",
"lint": "yarn eslint .",
"format": "yarn prettier --write .",
"check-format": "yarn prettier --check .",
"setup": "cp src/example-config.ts src/config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TymanWasTaken/tyman.tech.git"
},
"author": "Tyman",
"license": "MIT",
"bugs": {
"url": "https://github.com/TymanWasTaken/tyman.tech/issues"
},
"homepage": "https://github.com/TymanWasTaken/tyman.tech#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.1",
"glob": "^7.1.6",
"got": "^11.8.2",
"moment": "^2.29.1",
"rate-limiter-flexible": "^2.2.2",
"sass": "^1.32.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.11",
"@types/express-formidable": "^1.0.4",
"@types/express-session": "^1.17.3",
"@types/node": "^15.6.0",
"@types/sass": "^1.16.0",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"discord-api-types": "^0.18.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"typescript": "^4.2.4"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"useTabs": true,
"endOfLine": "lf",
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"eslintConfig": {
"env": {
"es2021": true,
"node": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"globals": {
"semver": "readonly",
"$": "readonly"
},
"ignorePatterns": [
"dist",
"files",
"static/js/lib",
"node_modules",
".vscode",
".idea"
]
}
}