-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "@konomi.ai/chronicle",
"version": "1.0.0",
"description": "The monorepo application of Chronicle. A practice management application for personal care agencies. Build custom data collection forms and perform analytics on the data.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"prettier": "npx prettier@2.5.1 --check .",
"prettier:fix": "npx prettier@2.5.1 --write .",
"prepare": "husky install",
"cypress": "cypress run",
"cypress:open": "cypress open",
"start:client": "cd ./client && yarn dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KonomiAI/Chronicle.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KonomiAI/Chronicle/issues"
},
"homepage": "https://github.com/KonomiAI/Chronicle#readme",
"devDependencies": {
"cypress": "^9.5.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "2.5.1",
"typescript": "^4.6.3",
"uuid": "^8.3.2"
},
"lint-staged": {
"*.{ts,tsx,md,html,scss,yml}": "npx prettier@2.5.1 --write"
}
}