-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.4 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
{
"name": "express-sequelize-boilerplate",
"version": "1.0.0",
"description": "Simple boilerplate for express RESTful API, using TypeScript and Sequelize ORM",
"main": "index.js",
"scripts": {
"prestart": "npm run build",
"start": "nodemon -L dist/index.js",
"build": "npx tsc",
"lint": "npx eslint . --ext .ts",
"migrate": "npx sequelize db:migrate"
},
"author": "David Dobryakov <kantegory@kantegory.me>",
"license": "ISC",
"devDependencies": {
"eslint": "^8.6.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tslint": "^6.1.3"
},
"dependencies": {
"@types/node": "^17.0.8",
"@adminjs/express": "^5.0.1",
"@adminjs/sequelize": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-formidable": "^1.2.0",
"@types/express-session": "^1.17.4",
"@types/flat": "^5.0.2",
"@types/minio": "^7.0.14",
"@types/multer": "^1.4.7",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-strategy": "^0.2.35",
"@types/react": "^16.9.43",
"@types/react-datepicker": "^3.1.0",
"@types/react-redux": "^7.1.23",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^5.1.9",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"adminjs": "^6.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"csv": "^6.1.3",
"express": "^4.17.2",
"express-formidable": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"minio": "^7.0.32",
"multer": "^1.4.5-lts.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-strategy": "^1.0.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.12.5",
"sequelize-cli": "^6.3.0",
"sequelize-typescript": "^2.1.2",
"swagger-autogen": "^2.21.0",
"swagger-ui-express": "^4.3.0",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
}
}