forked from ultimatecourses/node-express-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "node-express-typescript",
"version": "1.0.0",
"description": "Node.js setup with Express and TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/src/index.js",
"test": "rimraf dist && tsc && ENV_FILE=./config/.env.test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ultimatecourses/node-express-typescript.git"
},
"author": "ultimatecourses",
"license": "MIT",
"bugs": {
"url": "https://github.com/ultimatecourses/node-express-typescript/issues"
},
"homepage": "https://github.com/ultimatecourses/node-express-typescript#readme",
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.22",
"axios": "^0.26.1",
"body-parser": "^1.19.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jest": "^27.5.1",
"puppeteer": "^22.12.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
}
}