-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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
{
"name": "lachouettecoop-api",
"version": "1.6.0",
"description": "API unifiée des données de La Chouette Coop",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"release": "release-it",
"dev": "NODE_ENV=dev nodemon index.js",
"start": "NODE_ENV=production node index.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"apollo-server": "^2.7.0",
"common-tags": "^1.8.0",
"date-fns": "^2.1.0",
"dotenv": "^8.0.0",
"got": "^9.6.0",
"graphql": "^14.4.2",
"graphql-iso-date": "^3.6.1",
"graphql-middleware": "^4.0.1",
"graphql-shield": "^6.1.0",
"graphql-tools": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"ldapauth-fork": "^4.2.0",
"lodash": "^4.17.14",
"mem": "^5.1.1",
"neat-csv": "^5.1.0",
"nodemailer": "^6.4.6",
"nodemon": "^1.19.1"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"git": {
"commitMessage": "chore: release ${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@release-it/conventional-changelog": "^1.1.0",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.23",
"cz-conventional-changelog": "^3.0.2",
"jest": "^24.9.0",
"release-it": "^12.3.6"
}
}