-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 983 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 983 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "bp-node-tool",
"version": "1.0.0",
"description": "NodeJS bolierplate",
"main": "index.js",
"private": true,
"scripts": {
"start": "node ./src",
"dev": "nodemon ./src/index.js --ext js",
"eslint": "eslint src/ --ext .js || true",
"eslint:fix": "eslint src/ --ext .js --fix || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/restuta/bp-node.git"
},
"author": "Anton Vynogradenko <restuta8@gmail.com> (http://restuta.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/restuta/bp-node/issues"
},
"homepage": "https://github.com/restuta/bp-node#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"commander": "^8.1.0",
"ora": "^6.0.0"
}
}