forked from plone/blocks-conversion-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.76 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
101
102
103
104
105
106
107
{
"name": "@plone/blocks-conversion-tool",
"version": "0.8.2",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:plone/blocks-conversion-tool.git"
},
"bugs": {
"url": "https://github.com/plone/blocks-conversion-tool/issues"
},
"homepage": "https://plone.org",
"keywords": [
"volto",
"plone",
"react"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node ./src/server.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --watchAll",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"prettier": "./node_modules/.bin/prettier --single-quote --check '**/*.{js,json}'",
"prettier:fix": "./node_modules/.bin/prettier --single-quote --write '**/*.{js,json}'",
"lint": "./node_modules/eslint/bin/eslint.js --max-warnings=0 'src/**/*.js'",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix 'src/**/*.js'"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"draft-js": "^0.11.7",
"draft-js-import-html": "^1.4.1",
"express": "~4.16.1",
"express-validator": "^6.12.2",
"jsdom": "^17.0.0",
"morgan": "~1.9.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"slate": "^0.66.5",
"slate-hyperscript": "^0.66.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@release-it/conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.2.4",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"supertest": "^6.1.6"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"jest": {
"testEnvironment": "./src/tests/custom-test-env.js"
},
"release-it": {
"npm": {
"publish": true
},
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Changes"
},
{
"type": "chore",
"section": "Maintenance"
}
]
}
}
}
},
"files": [
"/src"
]
}