-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "gmg-js",
"version": "1.0.0",
"description": "Connect to your Green Mountain Grill and visualize grill temp, prob temp, and more!",
"main": "index.js",
"scripts": {
"update": "git pull",
"pi": "yarn update && yarn && yarn start",
"dashboard": "node -r esm dashboard.js",
"start": "babel-node index.js",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles --watch"
},
"author": "facultymatt<[email protected]>",
"license": "ISC",
"dependencies": {
"asciichart": "^1.5.15",
"async-csv": "^2.1.3",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.19",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"csvdb": "0.0.12",
"esm": "^3.2.25",
"express": "^4.17.1",
"lodash": "^4.17.15",
"pouchdb": "^7.2.1",
"pouchdb-find": "^7.2.1",
"random-words": "^1.1.1",
"rethinkdb": "^2.4.2",
"short-uuid": "^3.1.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.3.0",
"cross-env": "^7.0.2",
"jest": "^25.3.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}