-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "clean-architecture-example-typescript",
"version": "1.0.0",
"main": "src/server/index.js",
"license": "MIT",
"scripts": {
"start": "NODE_PATH=./ nodemon ./src/server/index.ts",
"build": "tsc --project ./",
"test": "jest src/__tests__",
"lint": "eslint './src/**/*.ts'",
"check-format": "prettier --check 'src/**/*.{js,ts,json}'",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"postinstall": "husky install"
},
"dependencies": {
"express": "^4.17.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"husky": "^5.1.1",
"import-sort-style-module": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"."
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}