generated from fawzibazari/Typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 915 Bytes
/
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
{
"name": "typescript-template",
"version": "1.0.0",
"description": "Typescript Template",
"main": "index.ts",
"repository": "https://github.com/fawzibazari/Typescript.git",
"author": "fawzibazari <[email protected]>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"dotenv": "^16.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.5.2"
},
"scripts": {
"start": "yarn build && node bin/src/index.js",
"start:prod": "node bin/src/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json"
},
"devDependencies": {
"@types/node": "^17.0.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0"
}
}