-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
44
45
46
47
48
49
50
51
{
"name": "glucoscape",
"version": "1.0.0",
"description": "Glucoscape is a small application that helps visualize Continuous Glucose Monitoring (CGM) data quickly and intuitively. It provides a heatmap representation of time spent below range, in range, and above range, allowing for easy identification of glucose patterns.",
"author": "Vita",
"license": "MIT",
"scripts": {
"build": "webpack && cp -v src/*.html src/*.ico src/*.png build/",
"dev": "npm-watch build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts,tsx,scss,html,png"
}
},
"devDependencies": {
"@types/ramda": "^0.28.23",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"css-loader": "^6.7.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-watch": "^0.11.0",
"prettier": "2.8.8",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"just-standard-deviation": "^2.2.0",
"ramda": "^0.28.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css,md}": "prettier --write"
}
}