-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
36 lines (36 loc) · 927 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
35
36
{
"name": "fruitnanny",
"version": "1.0.0",
"description": "Raspberry Pi based baby monitor",
"main": "index.js",
"scripts": {
"grunt": "grunt",
"start": "node server/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dmitry Ivanov",
"license": "MIT",
"dependencies": {
"@types/body-parser": "0.0.33",
"@types/ejs": "^2.3.30",
"@types/express": "^4.0.33",
"@types/mime": "0.0.29",
"@types/node": "^6.0.41",
"@types/serve-static": "^1.7.31",
"body-parser": "^1.15.2",
"ejs": "^2.5.2",
"express": "^4.14.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-ts": "^6.0.0-beta.3",
"grunt-tslint": "^3.2.1",
"pug": "^2.0.3",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"devDependencies": {
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0"
}
}