-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "node-express-mysql-template",
"version": "1.0.0",
"description": "This is a template containing all the required packages for a production scale development",
"author": "Akshay Kumar",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"start": "nodemon src/server.ts",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"db": "typeorm --config ./dist/db/ormconfig.js",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"faker": "^5.5.3",
"jest": "^27.2.4",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"joiful": "^3.0.2",
"jsonapi-serializer": "^3.6.7",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"ts-custom-error": "^3.2.0",
"typeorm": "^0.2.38"
}
}