-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "pi-sensor-reader",
"version": "3.2.4",
"main": "app.ts",
"author": "VirtualWolf <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node build/app.js",
"dev": "./node_modules/.bin/ts-node src/app.ts",
"compile": "./node_modules/.bin/tsc",
"test": "TEST=true API_ENDPOINT=http://localhost API_KEY=password ./node_modules/.bin/mocha -r ts-node/register test/**/*.test.ts"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"moment-timezone": "^0.5.31",
"node-dht-sensor": "~0.4.3",
"superagent": "^6.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@types/rewire": "^2.5.28",
"@types/sinon": "^9.0.8",
"@types/superagent": "^4.1.10",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-node-style-guide": "^3.0.0",
"mocha": "^8.2.1",
"nock": "^13.0.4",
"sinon": "^9.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}