-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "scv-nodejs-express",
"version": "0.0.1",
"private": true,
"main": "index.js",
"scripts": {
"start": "tsc && nodemon --exec 'ts-node' -r 'tsconfig-paths/register' --files bin/www.ts",
"postinstall": "find ./node_modules/**/node_modules -type d -name 'bitcore-lib' -exec rm -r {} + && echo 'Deleted duplicate bitcore-libs'",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@adminjs/express": "^4.0.0",
"@adminjs/mongoose": "^3.0.3",
"@adminjs/passwords": "^2.0.0",
"@adminjs/sequelize": "^2.0.0",
"@adminjs/typeorm": "^4.0.0",
"@adminjs/upload": "^2.0.1",
"adminjs": "^6.8.7",
"better-logging": "^5.0.0",
"body-parser": "^1.19.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "~3.1.0",
"dotenv": "^10.0.0",
"express": "~4.17.3",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"helmet": "^4.6.0",
"joi": "^17.4.2",
"log4js": "^6.4.0",
"mariadb": "^2.5.4",
"mongoose": "^8.8.3",
"morgan": "~1.9.1",
"multer": "^1.4.3",
"sequelize": "^6.29.0",
"sparkpost": "^2.1.4",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.2.0",
"typeorm": "^0.3.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.10.3",
"@types/sequelize": "^4.28.10",
"nodemon": "^2.0.13",
"ts-node": "^10.3.0",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
}
}