forked from lponciolo/express-production-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && nodemon build/src/index.js ",
"build": "tsc --project ./",
"postbuild": " copyfiles .env build/",
"tsc": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:run",
"test:run": "jest"
},
"keywords": [],
"author": "",
"type": "commonjs",
"license": "ISC",
"dependencies": {
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^7.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"http-errors": "^1.8.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.20",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.25",
"@types/sinon-chai": "^3.2.5",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "2.2.1",
"sinon-chai": "^3.5.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.3"
}
}