forked from ryanwiemer/cal-factor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
45
46
47
48
{
"name": "cal-factor",
"version": "1.1.1",
"description": "A simple web app to help calibrate Medtronic MiniMed insulin pumps and CGM sensors.",
"homepage": "https://www.cal-factor.com",
"bugs": {
"url": "https://github.com/ryanwiemer/cal-factor/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryanwiemer/cal-factor"
},
"author": "Ryan Wiemer <ryan@ryanwiemer.com> (http://ryanwiemer.com/)",
"scripts": {
"build-css": "node-sass src/scss/style.scss src/style.css",
"watch-css": "npm run build-css && node-sass -w src/scss/style.scss src/style.css",
"start-js": "react-scripts start",
"precommit": "lint-staged",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build"
},
"devDependencies": {
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.3",
"path": "^0.12.7",
"prettier": "^1.15.1",
"react-scripts": "^2.1.1"
},
"dependencies": {
"npm-check-updates": "^2.14.2",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-text-mask": "^5.4.3",
"smoothscroll-polyfill": "^0.4.3",
"text-mask-addons": "^3.8.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}