-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.98 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
{
"name": "api-nkcreation",
"private": true,
"version": "1.0.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"husky": "^4.3.6",
"semantic-release": "^17.3.1"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"docs/CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"install": "^0.13.0",
"knex": "<0.20.0",
"npm": "^6.14.10",
"pg": "latest",
"strapi": "^3.4.1",
"strapi-admin": "^3.4.1",
"strapi-connector-bookshelf": "^3.4.1",
"strapi-plugin-content-manager": "^3.4.1",
"strapi-plugin-content-type-builder": "^3.4.1",
"strapi-plugin-documentation": "^3.4.1",
"strapi-plugin-email": "^3.4.1",
"strapi-plugin-graphql": "^3.4.1",
"strapi-plugin-upload": "^3.4.1",
"strapi-plugin-users-permissions": "^3.4.1",
"strapi-provider-email-mailjet": "^3.3.0",
"strapi-utils": "^3.4.1"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "ed09e617-989d-4d5e-9003-dae0157a5bad"
},
"engines": {
"node": ">=10.16.0 <=14.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}