-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "Boilerplate for Express (NodeJS), Typescript and Sequelize",
"main": "index.js",
"repository": "https://github.com/Dharun/express-typescript.git",
"author": "Dharun Ramakrishnan",
"license": "MIT",
"private": false,
"scripts": {
"start": "set NODE_ENV=production&& npx env-cmd -f ./config/.env.production ts-node-dev --transpile-only -r tsconfig-paths/register packages/main/index.ts"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/express-useragent": "^1.0.2",
"@types/sequelize": "^4.28.14",
"env-cmd": "^10.1.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-useragent": "^1.0.15",
"helmet": "^5.1.0",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.21.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"winston": "^3.8.1"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}