-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest test --coverage",
"nodemon": "nodemon ./services/app.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"babel-jest": "^26.0.1",
"conventional-changelog": "^3.1.21",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"js-image-compressor": "^1.2.2",
"koa-body": "^4.2.0",
"koa-logger": "^3.2.1",
"koa-onerror": "^4.1.0",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"nodemon": "^2.0.7",
"regenerator-runtime": "^0.13.5",
"webpack-stylesheet-variable-replacer-plugin": "^1.6.0"
},
"dependencies": {
"ejs": "^3.1.3",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-multer": "^1.0.2",
"koa-router": "^9.1.0",
"koa-views": "^6.3.0",
"vue": "^2.6.12"
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules/**/node_modules",
"test/*",
"src/*"
],
"watch": [
"services/*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}