-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 1.14 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": "modern-workplace-squad",
"private": true,
"version": "1.0.0",
"description": "<h1 align=\"center\"> <a href=\"https://modern-workplace-squad.netlify.app/\"><img alt=\"Modern Workplace Squad\" src=\"website/static/img/svg/logo.svg\"></a> </h1>",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier-docs": "prettier --config .prettierrc --write \"**/*.{md,mdx}\"",
"prettier-docs:diff": "prettier --config .prettierrc --list-different \"**/*.{md,mdx}\"",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json}\"",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyeehan/modern-workplace-squad.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cyeehan/modern-workplace-squad/issues"
},
"homepage": "https://github.com/cyeehan/modern-workplace-squad#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"prettier": "^2.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}