This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "anyforce-backend",
"version": "0.0.1",
"description": "AnyForce backend.",
"main": "src/main.ts",
"engines": {
"node": ">= 12.13 <13"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"serve": "node build/src/main.js",
"serve:watch": "npm run clean && npm run build:watch"
},
"author": "WarlockD <warlockdn@gmail.com>",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.13.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.8.36",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"helmet": "^3.21.3",
"hpp": "^0.2.3",
"joi": "^17.2.1",
"mongoose": "^5.9.15",
"mongoose-unique-array": "^0.3.4",
"nanoid": "^3.1.12",
"pluralize": "^8.0.0",
"qs": "^6.9.4",
"tslib": "~1.10.0",
"vm2": "^3.9.2"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "~25.1.2",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.7.21",
"@types/node": "~12.12.27",
"@types/pluralize": "0.0.29",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "~2.19.2",
"@typescript-eslint/parser": "~2.19.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "~23.7.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "~25.1.0",
"prettier": "~1.19.1",
"rimraf": "~3.0.2",
"ts-jest": "~25.2.0",
"tsutils": "~3.17.0",
"typescript": "^3.9.7"
}
}