-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "hs-inventory",
"version": "1.2.0",
"description": "HackerSchool project for inventory management",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier \"**/*.{js,vue}\" --write",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"postinstall": "run-p setup:*",
"setup:backend": "cd backend && npm install",
"setup:frontend": "cd frontend && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackerSchool/InventoryManagement.git"
},
"keywords": [
"vue",
"expressjs",
"inventory-management"
],
"author": "HackerSchool",
"bugs": {
"url": "https://github.com/HackerSchool/InventoryManagement/issues"
},
"homepage": "https://github.com/HackerSchool/InventoryManagement#readme",
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}