This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.07 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
{
"name": "monsoutienpsy",
"version": "1.71.8",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocialGouv/mon-psy-sante"
},
"dependencies": {
"@faker-js/faker": "^7.3.0",
"@gouvfr/dsfr": "1.3.1",
"@monsonjeremy/react-leaflet": "^3.2.2",
"@sentry/nextjs": "^6.17.9",
"@socialgouv/matomo-next": "^1.4.0",
"axios": "^1.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.0",
"got": "12.1.0",
"graphql": "^16.3.0",
"graphql-request": "^5.0.0",
"joi": "^17.6.0",
"leaflet": "^1.7.1",
"next": "12.1.6",
"next-auth": "^4.3.4",
"nodemailer": "^6.7.2",
"p-limit": "3.1.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"react": "^18.0.0",
"react-autocomplete": "^1.8.1",
"react-dom": "^18.0.0",
"react-modal": "^3.15.1",
"sanitize-html": "^2.7.0",
"sequelize": "^6.21.2",
"sequelize-cli": "^6.4.1",
"styled-components": "^5.3.3",
"tough-cookie": "^4.0.0",
"ts-node": "^10.5.0",
"zod": "^3.14.4"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@socialgouv/eslint-config-react": "^1.104.0",
"@socialgouv/eslint-config-recommended": "^1.104.0",
"@types/jest": "^29.0.0",
"@types/leaflet": "^1.7.9",
"@types/mocha": "^10.0.0",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.39",
"@types/sequelize": "^4.28.14",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"cypress": "^9.4.1",
"eslint": "^8.9.0",
"eslint-config-next": "^12.0.10",
"eslint-plugin-import": "^2.25.4",
"jest": "^29.0.0",
"jest-dev-server": "^6.0.3",
"lint-staged": "^13.0.0",
"prettier": "^2.5.1",
"sinon": "^15.0.0",
"typescript": "^4.5.5",
"typescript-eslint": "^0.0.1-alpha.0"
},
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --runInBand --silent",
"test:api": "jest --config jest.config-api.js --testTimeout=50000 ./src/__tests__/api/ --runInBand",
"build": "next build",
"dev": "next dev",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"precommit": "lint-staged",
"start": "yarn run db:migrate && NODE_ENV=production next start",
"export": "next export",
"db:init": "yarn run db:migrate && yarn run db:seed",
"db:seed": "ts-node --transpile-only src/db/seeds/index.ts",
"db:migrate": "yarn sequelize-cli db:migrate",
"db:migrate:undo": "yarn sequelize-cli db:migrate:undo",
"db:migrate:create": "yarn sequelize migration:create --name",
"cy": "cypress open",
"cy:run": "cypress run",
"cron:launch": "ts-node --transpile-only src/cron/launch.ts",
"script:extract-departments": "ts-node --transpile-only scripts/stats-departements.ts",
"script:extract-emails-acceptes": "ts-node --transpile-only scripts/extract-emails-acceptes.ts",
"script:get-duplicate-nirs": "ts-node --transpile-only scripts/get-duplicate-nirs.ts"
}
}