generated from Molunerfinn/typescript-node-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.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
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
{
"name": "@picgo/store",
"version": "2.1.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "rimraf ./dist/* && tsc -w -p .",
"build": "rimraf ./dist/* && rollup -c",
"lint": "eslint src/**",
"test": "jest --coverage --runInBand",
"cz": "git-cz",
"release": "bump-version",
"cover": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Molunerfinn/typescript-node-template.git"
},
"author": "Molunerfinn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Molunerfinn/typescript-node-template/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
},
"homepage": "https://github.com/Molunerfinn/typescript-node-template#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@picgo/bump-version": "^1.0.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.7",
"@types/write-file-atomic": "^4.0.0",
"@typescript-eslint/eslint-plugin": "5.33.1",
"commitizen": "^4.2.4",
"conventional-changelog": "^3.1.18",
"coveralls": "^3.0.9",
"cz-customizable": "^6.2.0",
"eslint": "8.22.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"husky": "^4.0.10",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"ts-jest": "^24.3.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@commonify/lowdb": "^3.0.0",
"@commonify/steno": "^2.1.0",
"@types/bson": "^4.0.1",
"@types/graceful-fs": "^4.1.3",
"@types/lodash": "^4.14.182",
"comment-json": "^4.2.3",
"fflate": "^0.7.3",
"lodash": "^4.17.21",
"lodash-id": "^0.14.0",
"write-file-atomic": "^4.0.1"
}
}