This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.11 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
108
109
110
111
112
113
{
"name": "editor-article-store",
"version": "0.0.2",
"description": "Libero Editor Article Store",
"main": "./dist/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"distclean": "rimraf dist node_modules",
"prebuild": "rimraf dist",
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "tsc -w & nodemon ./dist/index.js",
"lint": "eslint **/*.ts",
"prettier": "prettier --write '**/*.ts'",
"test": "jest ./test/unit",
"test:functional": "jest ./test/functional --coverage=false --runInBand",
"release": "standard-version",
"migrate": "migrate up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libero/editor-article-store.git"
},
"author": "NuclearRedeye",
"license": "MIT",
"bugs": {
"url": "https://github.com/libero/editor/issues"
},
"config": {
"mongodbMemoryServer": {
"version": "latest"
}
},
"homepage": "https://github.com/libero/editor-article-store#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cors": "^2.8.9",
"@types/decompress": "^4.2.3",
"@types/deep-diff": "^1.0.0",
"@types/express": "^4.17.11",
"@types/http-server": "^0.10.1",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/mime-types": "^2.1.0",
"@types/mongodb": "^3.6.3",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.21",
"@types/node-fetch": "^2.5.10",
"@types/nwmatcher": "^1.4.2",
"@types/prosemirror-model": "^1.11.2",
"@types/prosemirror-state": "^1.2.6",
"@types/sharp": "^0.27.1",
"@types/supertest": "^2.0.10",
"@types/unzipper": "^0.10.3",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"standard-version": "^9.3.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/body-parser": "^1.19.0",
"@xmldom/xmldom": "^0.7.3",
"aws-sdk": "^2.770.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"decompress": "^4.2.1",
"deep-diff": "^1.0.2",
"express": "^4.17.1",
"file-type": "^15.0.1",
"fontoxpath": "^3.17.4",
"lodash": "^4.17.21",
"migrate": "^1.7.0",
"mime-types": "^2.1.31",
"moment": "^2.29.1",
"mongodb": "^3.6.2",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"nwmatcher": "^1.4.4",
"prosemirror-model": "^1.13.3",
"prosemirror-state": "^1.3.4",
"sharp": "^0.26.2",
"sqs-consumer": "^5.4.0",
"uuid": "^8.3.2"
}
}