-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 729 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 729 Bytes
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
{
"name": "enter-project-name",
"version": "1.0.0",
"description": "Node.js project init files",
"main": "index.js",
"repository": "https://github.com/123MwanjeMike/nodejs-project-init.git",
"author": "Mike Mwanje <mwanjemike767@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"babel-jest": "^27.2.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"scripts": {
"prepare": "husky install",
"dev-test": "jest --watch",
"test": "jest --forceExit --detectOpenHandles || true",
"start": "index.js"
}
}