-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "conferences",
"version": "1.6.2",
"description": "Conférences audio et vidéo pour les fonctionnaires de l'Etat",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon index.js",
"devKnex": "DEBUG=knex:query nodemon index.js",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"migrate": "knex migrate:latest",
"makeMigration": "knex migrate:make",
"rollback": "knex migrate:rollback",
"listMigrations": "knex migrate:list",
"start": "node index.js",
"test": "mocha test/*.js --recursive --exit --require ./test/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/conferences.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/betagouv/conferences/issues"
},
"homepage": "https://github.com/betagouv/conferences#readme",
"dependencies": {
"@gouvfr/dsfr": "^1.11.2",
"@sentry/node": "^6.2.2",
"chart.js": "^2.9.4",
"connect-flash": "^0.1.1",
"connect-session-knex": "^2.0.0",
"cookie-parser": "^1.4.5",
"cron": "^1.8.2",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"express": "^4.17.3",
"express-session": "^1.17.1",
"intl": "^1.2.5",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.0",
"memorystore": "^1.6.4",
"nodemailer": "^6.6.1",
"ovh": "^2.0.3",
"pg": "^8.4.2",
"remixicon": "^2.5.0",
"openid-client": "^5.1.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"sinon": "^9.2.0"
}
}