-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "msj-public-back",
"version": "1.0.0",
"description": "Backend de l'application publique Mon Suivi Justice",
"main": "index.js",
"scripts": {
"start": "node ./build/server.js",
"build": "tsc --project ./tsconfig.production.json",
"dev": "ts-node-dev src/server.ts",
"debug": "npm run dev -- --inspect",
"test": "jest --runInBand",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"local-test": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/msj-public-back.git"
},
"author": "Charles Marcoin",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/betagouv/msj-public-back/issues"
},
"homepage": "https://github.com/betagouv/msj-public-back#readme",
"dependencies": {
"@sentry/node": "^8.50.0",
"@sentry/tracing": "^7.120.3",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cls-hooked": "^4.2.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.0",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2",
"sequelize-typescript": "^2.1.6",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.7",
"@types/sequelize": "^4.28.20",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.1",
"eslint-config-love": "^84.1.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"supertest": "^7.0.0"
}
}