-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 806 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 806 Bytes
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
{
"name": "@rtapp/cdrs-deploy",
"version": "0.1.0",
"private": true,
"description": "Express.js server for cdrs-deploy.repohubdev.tk",
"dependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"uuid": "^8.3.2"
},
"scripts": {
"commit": "cz --signoff",
"start": "node server.js",
"dev": "nodemon server.js",
"lint-check": "prettier --check server.js",
"lint-ci": "prettier server.js",
"lint-format": "prettier --write server.js",
"lint": "yarn run lint-check || true && yarn run lint-ci && yarn run lint-format"
},
"devDependencies": {
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}