-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "node-app-boilerplate",
"version": "1.3.0",
"main": "dist/main.js",
"scripts": {
"start": "babel-node ./src/main.js",
"start:dev": "nodemon --watch ./src --exec babel-node ./src/main.js",
"lint": "eslint ./src",
"lint:branch-name": "branch-name-lint",
"build": "babel -d ./dist ./src",
"prebuild": "rm -rf ./dist",
"release": "standard-version",
"prerelease": "yarn build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "branch-name-lint"
}
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/cli": "^7.8.4",
"@babel/register": "^7.8.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"branch-name-lint": "^1.0.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"nodemon": "^2.0.2",
"standard-version": "^8.0.1"
}
}