-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.69 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "service-exercice",
"version": "1.0.0",
"description": "Service d'exercice du projet LA Web",
"keywords": [],
"contributors": [
{
"name": "Simon LEONARD"
},
{
"name": "Clément RICHARDOT"
},
{
"name": "Paul DELIFER"
},
{
"name": "Simon PICHENOT"
},
{
"name": "Romain PAJEAN"
},
{
"name": "Romain NEGRO"
}
],
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc --build tsconfig.prod.json",
"start:dev": "nodemon",
"start": "node -r module-alias/register build/index.js",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"prettier-format": "run-script-os",
"prettier-format:win32": "prettier --config .prettierrc \"./(src|spec)/**/*.ts\" --write",
"prettier-format:darwin:linux": "prettier --config .prettierrc '(src|spec)/**/*.ts' --write",
"prettier-format:default": "prettier --config .prettierrc '(src|spec)/**/*.ts' --write",
"prettier-watch": "run-script-os",
"prettier-watch:win32": "onchange \"(src|spec)/**/*.ts\" -- prettier --write {{changed}}",
"prettier-watch:darwin:linux": "onchange '(src|spec)/**/*.ts' -- prettier --write {{changed}}",
"prettier-watch:default": "onchange '(src|spec)/**/*.ts' -- prettier --write {{changed}}",
"test": "jest",
"test:dev": "jest --watchAll",
"prepare": "./prepare.sh"
},
"_moduleAliases": {
"@app": "build/app",
"@config": "build/config",
"@type": "build/type",
"@db": "build/db",
"@repositories": "build/repositories",
"@helpers": "build/helpers",
"@services": "build/services",
"@middlewares": "build/middlewares",
"@routes": "build/routes"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"nodemon": "^2.0.15",
"onchange": "^7.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.25.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"module-alias": "^2.2.2",
"mongoose": "^6.2.1"
}
}