forked from betagouv/secretariat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.62 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
{
"name": "secretariat",
"version": "1.0.0",
"description": "Le secrétariat de l’incubateur",
"main": "index.ts",
"scripts": {
"start": "node dist/index.js",
"migrate": "knex migrate:latest",
"makeMigration": "knex migrate:make",
"seed": "knex seed:run",
"rolldown": "knex migrate:down",
"dev": "ts-node-dev src/index.ts",
"lint": "eslint . --fix",
"test": "ts-mocha --icu-data-dir=./node_modules/full-icu tests/*.ts tests/*.js --exit --require ./tests/env-setup.ts --timeout 3000",
"prepare": "husky install",
"pre-commit": "lint-staged",
"build": "./node_modules/.bin/tsc -p tsconfig.build.json"
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/secretariat.git"
},
"author": "Julien DAUPHANT",
"license": "MIT",
"bugs": {
"url": "https://github.com/betagouv/secretariat/issues"
},
"homepage": "https://github.com/betagouv/secretariat#readme",
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"@octokit/core": "^3.5.1",
"@octokit/request": "^5.6.0",
"@sentry/integrations": "^6.10.0",
"@sentry/node": "^6.10.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cron": "^1.8.2",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.16.3",
"express-jwt": "^6.0.0",
"express-sanitizer": "^1.0.6",
"express-session": "^1.17.2",
"front-matter": "^4.0.2",
"full-icu": "^1.3.4",
"hedgedoc-api": "git+https://github.com/betagouv/hedgedoc-api-lib-js.git#v1.0",
"jsonwebtoken": "^8.2.2",
"juice": "^8.0.0",
"knex": "^0.95.8",
"lodash": "^4.17.21",
"marked": "^2.1.3",
"nodemailer": "^6.6.3",
"ovh": "^2.0.1",
"pg": "^8.6.0",
"promise-memoize": "^1.2.1",
"raw-body": "^2.4.1",
"template.data.gouv.fr": "^1.3.2",
"topbar": "^1.0.1",
"ts-mocha": "^8.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"mocha": "^9.0.3",
"nock": "^13.1.1",
"nodemon": "^2.0.12",
"pg-connection-string": "^2.5.0",
"prettier": "^2.3.2",
"rewire": "^5.0.0",
"sinon": "^11.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"prettier": {
"singleQuote": true
}
}