-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.29 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
{
"name": "bal-admin",
"version": "0.1.0",
"private": true,
"author": "Équipe Adresse <[email protected]>",
"contributors": [
"Jérôme Desboeufs <[email protected]>",
"Théophile Merlière <[email protected]>",
"Guillaume Fay <[email protected]>",
"Fabien Tafforeau <[email protected]>"
],
"scripts": {
"dev": "nodemon server/index.ts",
"build:next": "next build",
"build:server": "tsc --project tsconfig.server.json",
"build": "yarn build:next && yarn build:server",
"start": "node dist/index.js",
"lint": "eslint --ext .js,.ts,.tsx .",
"predev": "only-include-used-icons",
"prebuild": "only-include-used-icons",
"typeorm": "typeorm-ts-node-commonjs",
"typeorm:migration:run": "yarn typeorm migration:run -- -d ./typeorm.config.ts",
"typeorm:migration:down": "yarn typeorm migration:revert -- -d ./typeorm.config.ts"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.14.7",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@etalab/decoupage-administratif": "^4.0.0",
"@mui/material": "^5.13.7",
"bson": "^6.9.0",
"chart.js": "^4.2.1",
"class-validator": "^0.14.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"fuse.js": "6.6.2",
"got": "11.8",
"lodash": "^4.17.21",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"next-transpile-modules": "^10.0.1",
"nodemailer": "^6.9.9",
"pg": "^8.13.1",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.2",
"react-js-pagination": "^3.0.3",
"react-toastify": "^9.1.3",
"reflect-metadata": "^0.2.2",
"sanitize-html": "^2.12.1",
"sharp": "^0.32.6",
"styled-components": "^5.3.9",
"typeorm": "^0.3.20",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.8.7",
"@types/react": "^18.2.14",
"dotenv": "^16.0.3",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"nodemon": "^3.1.7",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"engines": {
"node": "22"
}
}