-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "socket",
"version": "1.0.0",
"description": "Socket for my irrigation",
"main": "app.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --runInBand --force-exit --detectOpenHandles --testTimeout=10000",
"start:scheduller": "./node_modules/.bin/babel-node scheduler",
"start:app": "./node_modules/.bin/babel-node index",
"start:mqtt:client": "node lib/mqttclient.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@functional-lib/irrigation": "^1.0.11",
"@functional-lib/kalendar": "^1.0.17",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cookie-session": "^1.4.0",
"cron": "^1.7.1",
"express": "^4.17.0",
"express-session": "^1.17.1",
"fluture": "^13.0.1",
"fluture-sanctuary-types": "^7.0.1",
"jsverify": "^0.8.4",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"mongodb": "^3.6.3",
"most": "^1.9.0",
"mqtt": "^4.2.6",
"nodemailer": "^6.5.0",
"ramda": "^0.27.1",
"shelljs": "^0.8.3",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"benchmark": "^2.1.4",
"cross-env": "^7.0.3",
"daggy": "^1.4.0",
"fantasy-laws": "^1.2.0",
"jest": "^26.6.3",
"sanctuary": "^2.0.0",
"sanctuary-show": "^1.0.0",
"sanctuary-type-classes": "^11.0.0",
"sinon": "^7.3.2",
"supertest": "^6.1.3"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000,
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}