forked from kwanghoon/starter-kit-smartapp-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 764 Bytes
/
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
{
"name": "starter-kit-smartapp",
"version": "1.0.0",
"description": "Reaing a contact sensor, a motion sensor, and a button",
"repository": "https://github.com/kwanghoon/starter-kit-smartapp-nodejs",
"main": "server.js",
"ava": {
"files": [
"./**/*.spec.js"
],
"failFast": true
},
"scripts": {
"test": "NODE_ENV=test ava --verbose",
"start": "node server.js"
},
"author": "SmartThings",
"license": "Apache-2.0",
"dependencies": {
"@smartthings/smartapp": "^2.6.1",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"prettyjson": "^1.2.5"
},
"devDependencies": {
"ava": "^4.0.1",
"express": "^4.17.3",
"serverless": "^3.2.1"
},
"engines": {
"node": "^14"
}
}