generated from David-L-R/express_ts_jest_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "node_ts_config",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev": "nodemon ./src/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "nodemon ./src/index.ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc ./src/**/*.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/David-L-R/Node_TS_Config_Workshop.git"
},
"keywords": [
"Typescript",
"Node",
"Config",
"ESLint",
"Prettier"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/David-L-R/Node_TS_Config_Workshop/issues"
},
"homepage": "https://github.com/David-L-R/Node_TS_Config_Workshop#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.41",
"@types/sharp": "^0.30.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"nodemon": "^2.0.16",
"prettier": "^2.7.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"sharp": "^0.30.6"
}
}