-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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": "typescript-node-setup",
"version": "1.0.0",
"description": "Node.js project with TypeScript, Express.js, ESLint, Prettier, ts-node, nodemon and package.json environment specific scripts.",
"main": "index.js",
"scripts": {
"local": "NODE_ENV=local nodemon",
"dev": "NODE_ENV=development npm run build:start",
"qa": "NODE_ENV=qa npm run build:start",
"prod": "NODE_ENV=production npm run build:start",
"build:start": "rm -rf dist/ && tsc -p tsconfig.json && node -r dotenv/config dist/server.js",
"lint:no-fix": "eslint src/**/*.ts",
"lint": "eslint src/**/*.ts --fix",
"prettier": "prettier --write ."
},
"keywords": [
"Node.js",
"TypeScript",
"Express.js",
"ESLint",
"Prettier",
"ts-node",
"Nodemon",
"Package.json",
"Environment-specific scripts",
"Web development",
"TypeScript project",
"Development tools",
"Code quality",
"Project essentials",
"typescript-eslint-setup",
"environment-specific-scripts",
"nodejs-typescript-project",
"typescript-development-tools",
"nodejs-typescript-code-quality",
"nodejs-typescript-project-essentials",
"nodejs-typescript-project-setup",
"nodejs-typescript-project-boilerplate",
"typescript-nodemon-setup",
"typescript-prettier-setup"
],
"author": "Shubham Sharma(https://github.com/shubham-sharmas)",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/node": "^20.10.4",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"prettier": "^3.1.1"
},
"engines": {
"npm": ">=9.5.1",
"node": ">=18.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shubham-sharmas/typescript-node-project"
}
}