-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
100 lines (100 loc) · 2.83 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
{
"name": "MonServiceSécurisé",
"version": "1.0.0",
"description": "",
"engines": {
"node": "18",
"npm": "10"
},
"scripts": {
"build": "knex migrate:latest && npm run cree-utilisateur-demo && npx vite build --config svelte/vite.config.mts && npx tsc",
"cree-utilisateur-demo": "node dist/creeUtilisateurDemo.js",
"test": "eslint . && mocha",
"test:mocha": "mocha",
"test:watch": "nodemon --exec mocha",
"start": "node --require dotenv/config dist/server.js",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"mocha": {
"spec": "./test*/**/*.spec.*js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/mon-service-securise.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/betagouv/mon-service-securise/issues"
},
"homepage": "https://github.com/betagouv/mon-service-securise#readme",
"dependencies": {
"@sentry/node": "^7.102.1",
"@tiptap/core": "^2.7.1",
"@tiptap/extension-mention": "^2.7.1",
"@tiptap/extension-placeholder": "^2.7.1",
"@tiptap/starter-kit": "^2.7.1",
"axios": "^0.28.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.0.3",
"express": "^4.21.2",
"express-ip-access-control": "^1.1.3",
"express-ipfilter": "^1.3.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.14.2",
"html-entities": "^2.3.3",
"jsonwebtoken": "^9.0.0",
"jszip": "^3.10.1",
"knex": "^2.4.2",
"lusca": "^1.7.0",
"marked": "^13.0.2",
"openid-client": "^5.7.0",
"p-map": "^4.0.0",
"p-throttle": "4.1.1",
"pdf-lib": "^1.17.1",
"pg": "^8.8.0",
"pug": "^3.0.2",
"puppeteer": "^19.7.3",
"string-strip-html": "^8.4.0",
"svelte-tiptap": "^1.1.3",
"tippy.js": "^6.3.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"@tsconfig/svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.0.0",
"concurrently": "^8.2.1",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-svelte": "^2.33.0",
"expect.js": "^0.3.1",
"glob": "^10.3.4",
"husky": "^8.0.3",
"jquery": "^3.6.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"svelte-eslint-parser": "^0.33.0",
"ts-node": "^10.9.2",
"tslib": "^2.5.0",
"typescript": "~5.2.0",
"vite": "^4.5.5",
"vitest": "^2.0.4"
}
}