-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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
44
{
"name": "digicook",
"version": "1.0.0",
"description": "",
"main": "server/dist/index.js",
"engines": {
"node": "15.4.0",
"npm": "6.14.10"
},
"scripts": {
"start": "node server/dist/index.js",
"server": "npm run dev --prefix server",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"postinstall": "(cd server && npm install); (cd client && npm install)",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build --prefix server && npm run build --prefix client",
"format": "prettier --write . && git add -A ."
},
"pre-commit": [
"format"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mhyusuf/digicook.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mhyusuf/digicook/issues"
},
"homepage": "https://github.com/mhyusuf/digicook#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^3.3.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}