-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.default
More file actions
33 lines (33 loc) · 924 Bytes
/
package.json.default
File metadata and controls
33 lines (33 loc) · 924 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
{
"name": "starter-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev-front": "npm run dev --prefix=./frontend",
"dev-back": "npm run dev --prefix=./backend",
"dev-fb": "run-p dev-back dev-front",
"build-front": "npm run build --prefix=./frontend",
"build-back": "npm run build --prefix=./backend",
"build-fb": "run-s build-back build-front",
"start-front": "npm run start --prefix=./frontend",
"start-back": "npm run start --prefix=./backend",
"start-fb": "run-s start-back start-front"
},
"author": "web-bee.ru",
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@web-bee-ru/commitlint-config": "^1.0.1",
"husky": "^4.3.8"
}
}