This repository was archived by the owner on Nov 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 KB
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
{
"name": "ovoapi",
"version": "1.0.0",
"description": "Just an API server (revamped)",
"main": "build/index",
"packageManager": "yarn@3.0.2",
"scripts": {
"lint": "eslint --cache --report-unused-disable-directives --ignore-path .gitignore --ext .ts src/",
"lint:fix": "eslint --cache --report-unused-disable-directives --ext .ts src/ --fix",
"build": "yarn clean && yarn build:ts",
"build:ts": "tsc -b src",
"clean": "rimraf ./build && mkdir build"
},
"author": "ArtieFuzzz (https://artiefuzzz.is-a.dev)",
"license": "BSD-3-Clause",
"dependencies": {
"centra": "^2.4.2",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.0"
},
"devDependencies": {
"@astriel-division/eslint-config": "1.2.0",
"@astriel-division/ts-config": "1.0.5",
"@types/centra": "2.2.0",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/hpp": "0.2.2",
"@types/jsonwebtoken": "8.5.5",
"@types/node": "15.14.9",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"rimraf": "3.0.2",
"tslib": "2.3.1",
"typescript": "4.4.4"
}
}