-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.13 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-api-ts-boilerplate",
"version": "0.1.1",
"description": "Simple boiler plate for rest-api with express written in typescript",
"main": "build/index.js",
"scripts": {
"pretty": "prettier -w src",
"test": "mocha -r ts-node/register src/**/**/*.spec.ts",
"dev": "nodemon",
"start": "node ./build/index.js",
"prebuild": "rm -rf ./build",
"build": "tsc --build",
"postbuild": "cp -r src/api-docs build/api-docs",
"migration:start": "node ./build/app/scripts/migrate.js",
"migration:revert": "node ./build/app/scripts/revert-migration.js",
"migration:revertAll": "node ./build/app/scripts/revert-all-migrations.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svijaykoushik/express-api-ts-boilerplate.git"
},
"keywords": [
"express.js",
"boiler-plate",
"typescript",
"rest-api"
],
"author": "Vijaykoushik, S.",
"license": "MIT",
"bugs": {
"url": "https://github.com/svijaykoushik/express-api-ts-boilerplate/issues"
},
"homepage": "https://github.com/svijaykoushik/express-api-ts-boilerplate#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.5",
"reflect-metadata": "^0.2.1",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"typeorm": "^0.3.19"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/chai": "^4.3.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "0.0.48",
"@types/jsonwebtoken": "^9.0.5",
"@types/jwk-to-pem": "^2.0.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@types/swagger-jsdoc": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"chai": "^5.0.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}