-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
43
{
"name": "food-hub",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"testEnvironment": "node"
},
"scripts": {
"start": "cd server && npm start",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"dev:client": "cd client && npm start",
"dev:server": "cd server && npm run dev",
"install": "cd client && npm install && cd .. && cd server && npm install",
"postinstall": "npx husky install",
"rmnm": "rm -rf node_modules && rm -rf client/node_modules && rm -rf server/node_modules",
"lint:client": "cd client && npm run lint",
"lint:server": "cd server && npm run lint",
"lint": "npm run lint:client && npm run lint:server",
"lint-fix:client": "cd client && npm run lint-fix",
"lint-fix:server": "cd server && npm run lint-fix",
"lint-fix": "npm run lint-fix:client && npm run lint-fix:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G10/food-hub.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G10/food-hub/issues"
},
"homepage": "https://github.com/GSG-G10/food-hub#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"husky": "^7.0.4",
"nodemon": "^2.0.14"
},
"dependencies": {},
"engines": { "node" : "14.18.1" }
}