-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "typescript-express-starter",
"version": "1.0.0",
"description": "Typescript Express basic boilerplate",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"test": "jest --watch",
"coverage": "jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahsan-codejit/typescript-express-starter.git"
},
"keywords": [],
"author": "Md. Ahsan Habib",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahsan-codejit/typescript-express-starter/issues"
},
"homepage": "https://github.com/ahsan-codejit/typescript-express-starter#readme",
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-shopify": "^35.1.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1"
}
}