-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "compose-express-app",
"version": "1.0.2",
"description": "Creates a Typescript powered express app",
"main": "index.js",
"bin": "./bin/cli.js",
"keywords": [
"express",
"scaffold",
"generator"
],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --watch",
"serve": "nodemon --watch dist --exec \"node dist/bundle.js\"",
"start": "concurrently \"npm run dev\" \"npm run serve\"",
"coverage": "jest --coverage",
"test": "jest --watch"
},
"author": "Harshal Limaye <harshal.limaye@outlook.com>",
"license": "MIT",
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.18.2",
"morgan": "1.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/harshalslimaye/compose-express-app"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/cors": "2.8.15",
"@types/express": "4.17.20",
"@types/jest": "29.5.7",
"@types/morgan": "1.9.7",
"@types/node": "20.8.10",
"@types/supertest": "2.0.15",
"concurrently": "8.2.2",
"nodemon": "3.0.1",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"typescript": "5.2.2",
"webpack": "5.92.1",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0"
}
}