-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
145 lines (145 loc) · 5.36 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "espace-membre",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.10.0"
},
"scripts": {
"dev": "node --max_old_space_size=8192 -r ts-node/register src/server/server.ts",
"build:next": "next build",
"build:server": "ttsc -p tsconfig.server.json",
"build": "npm run build:next && npm run build:server",
"start": "NODE_ENV=production node dist/src/server/server.js",
"lint": "next lint",
"migrate": "knex migrate:latest --esm",
"rolldown": "knex migrate:down --esm",
"makeMigration": "knex migrate:make -x ts --esm",
"e2e": "npx playwright test",
"test": "NODE_ENV=test ts-mocha --paths -p tsconfig.json src/**/*.spec.ts __tests__/*.ts --exit --require ts-node/register --icu-data-dir=./node_modules/full-icu --require ./__tests__/env-setup.ts --timeout 30000",
"seed": "knex seed:run --esm",
"predev": "only-include-used-icons",
"prebuild": "only-include-used-icons",
"postinstall": "is-ci || husky install",
"kysely-codegen": "./node_modules/.bin/kysely-codegen --include-pattern=\"public.*\" --out-file ./src/@types/db.d.ts",
"staging-import-from-www": "node dist/src/scripts/import-from-www",
"dev-import-from-www": "ts-node src/scripts/import-from-www",
"export-to-www": "./src/scripts/export-to-www.sh",
"fixme": "node ./node_modules/.bin/fixme -p src",
"pg-mermaid": "npx -s pg-mermaid --dbname secretariat --username secretariat -h 127.0.0.1 -p 5432 --password secretariat --excluded-tables badge_requests community knex_migrations knex_migrations_lock startup_aggregated_stats"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.13.6",
"@emotion/styled": "^11.11.0",
"@gouvfr/dsfr": "^1.12.1",
"@hookform/resolvers": "^3.3.4",
"@mui/material": "^5.15.10",
"@octokit/rest": "^20.0.2",
"@sentry/nextjs": "^8.32.0",
"@sentry/node": "^8.32.0",
"@sindresorhus/slugify": "^1.1.0",
"@socialgouv/matomo-next": "^1.9.1",
"airtable": "^0.12.2",
"aws-sdk": "^2.1664.0",
"axios": "^1.7.7",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.7",
"crisp-sdk-web": "^1.0.25",
"cron": "^2.4.4",
"date-fns": "^3.3.1",
"deep-object-diff": "^1.1.9",
"ejs": "^3.1.9",
"express": "^4.21.1",
"express-jwt": "^8.4.1",
"express-rate-limit": "^7.4.1",
"express-sanitizer": "^1.0.6",
"express-session": "^1.18.1",
"front-matter": "^4.0.2",
"hedgedoc-api": "github:betagouv/hedgedoc-api-lib-js#v1.0",
"ical.js": "^1.5.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"juice": "^9.1.0",
"knex": "^3.1.0",
"kysely": "^0.27.4",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.21",
"markdown-it": "^13.0.2",
"marked": "^9.1.0",
"next": "^14.2.12",
"next-auth": "^4.24.10",
"node-ical": "^0.18.0",
"nodemailer": "^6.9.9",
"nuqs": "^2.0.4",
"ovh": "^2.0.3",
"p-all": "^3.0.0",
"pg": "^8.11.5",
"pg-boss": "^9.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.50.1",
"react-leaflet": "^4.2.1",
"react-markdown-editor-lite": "^1.3.4",
"react-select": "^5.8.1",
"react-table": "^7.8.0",
"react-tabulator": "^0.19.0",
"react-use": "^17.5.1",
"rsmq": "^0.12.4",
"sib-api-v3-sdk": "^8.5.0",
"ts-pattern": "^5.5.0",
"tss-react": "^4.9.4",
"type-route": "^1.1.0",
"unescape": "^1.0.1",
"unzipper": "^0.12.3",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@hookform/devtools": "^4.3.1",
"@playwright/test": "^1.48.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"@types/pg": "^8.11.0",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"cron-to-human": "^1.0.0",
"dotenv": "^16.4.4",
"eslint": "^8.57.0",
"eslint-config-next": "latest",
"eslint-plugin-import": "^2.29.1",
"fixme": "^0.7.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"kysely-codegen": "^0.16.8",
"nock": "^13.5.1",
"node-mocks-http": "^1.16.1",
"node-talisman": "^1.29.11",
"postcss": "^8.4.35",
"proxyquire": "^2.1.3",
"rewire": "^7.0.0",
"sass": "^1.71.0",
"sinon": "^17.0.1",
"tailwindcss": "^3.4.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"ttsc": "^0.3.1",
"typescript": "^5.5.3",
"typescript-transform-paths": "^3.4.6"
}
}