-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.36 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
{
"name": "CodewarsKata",
"version": "0.0.1",
"description": "A compilation of Kata from CodeWars",
"license": "MIT",
"repository": "/CodewarsUnsort",
"main": "dist/index.js",
"author": {
"name": "Michele Brissoni",
"email": "[email protected]",
"url": "https://github.ibm.com/"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"test:debug": "jest --watchAll",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint .",
"flow": "flow check",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"flowbuild": "flow-copy-source src dist",
"prebuild": "npm run docs && npm run clean && npm run flowbuild",
"build": "babel src -d dist",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags",
"start": "node src/index.js",
"debug": "nodemon --inspect ./src/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"boilerplate-nodejs"
],
"dependencies": {
"body-parser": "^1.20.2",
"chai": "^5.0.3",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"mocha": "^10.2.0",
"request": "^2.88.0",
"slack": "^11.0.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.23.9",
"@babel/preset-flow": "^7.23.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^29.7.0",
"documentation": "^14.0.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-flowtype-errors": "^4.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"flow-bin": "^0.228.0",
"flow-copy-source": "^2.0.9",
"husky": "^9.0.6",
"jest-cli": "^29.7.0",
"lint-staged": "^15.2.0",
"opn-cli": "^4.1.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"standard-changelog": "^5.0.0"
}
}