forked from dashersw/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.06 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
{
"name": "stack",
"version": "1.0.1",
"private": true,
"description": "A starter repository for MongoDB, Node.js, and Vue.js, with a local environment based on Docker.",
"scripts": {
"lint-staged-backend": "cd backend && npm run lint-staged",
"lint-staged-frontend": "cd frontend && npm run lint-staged",
"lint-staged": "concurrently \"npm run lint-staged-backend\" \"npm run lint-staged-frontend\"",
"lint-backend": "cd backend && npm run lint",
"lint-frontend": "cd frontend && npm run lint",
"lint": "concurrently \"npm run lint-backend\" \"npm run lint-frontend\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashersw/stack.git"
},
"keywords": [],
"author": "Armagan Amcalar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashersw/stack/issues"
},
"homepage": "https://github.com/dashersw/stack#readme",
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.0.11"
}
}