generated from davidlm97/express-ts-babel-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "issue-tracker-api",
"version": "1.0.0",
"description": "Issue tracker API",
"main": "src/index.ts",
"jest": {
"verbose": true,
"testTimeout": 20000
}, "scripts": {
"type": "tsc --noEmit",
"type-watch": "npm run type -- --watch --preserveWatchOutput",
"start-nodemon": "nodemon --exec babel-node --extensions \".ts\" src/index.ts",
"start-dev": "run-p -l type-watch start-nodemon",
"test": "export NODE_ENV=test && jest",
"clean": "rm -rf dist",
"build-dev": "npm run clean && babel src -d dist --ignore=\"./src/**/*.spec.ts\" --extensions \".ts\"",
"build": "run-p -l type build-dev",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts"
},
"keywords": [
"typescript",
"babel",
"boilerplate",
"express",
"scaffolding"
],
"author": "David Lopez Maldonado",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@shelf/jest-mongodb": "^2.2.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"mongodb-memory-server": "^8.5.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"joi": "^17.6.0",
"mongoose": "^6.2.9",
"morgan": "^1.10.0"
}
}