-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "express-sequelize-ts-example",
"version": "1.1.1",
"description": "A basic example of using express with sequelize and typescript.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/app.js",
"start:populate_db": "tsc && BUILD_DB=TRUE node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p .",
"lint": "eslint --ext .js,.ts src/"
},
"author": "Stefan Nedelchev",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"compression": "^1.7.5",
"connect-session-sequelize": "^7.1.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-session": "^1.18.1",
"faker": "^5.5.3",
"helmet": "^8.0.0",
"mysql2": "^3.11.4",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/faker": "^5.5.9",
"@types/node": "^20.17.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "~5.0.4"
}
}