-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.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
{
"name": "essentials-api",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "node --loader ts-node/esm --experimental-specifier-resolution=node src/app.ts"
},
"engines": {
"node": ">=11.6.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"debug": "~2.6.9",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"moment": "^2.29.1",
"mongodb": "^4.1.3",
"mongoose": "^6.3.3",
"morgan": "~1.9.1",
"node-fetch": "^3.0.0",
"node-schedule": "^2.0.0",
"simple-git": "^3.7.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/debug": "^4.1.7",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.6",
"@types/node-schedule": "^1.3.2",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^5.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}