This repository has been archived by the owner on Jul 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "smart-exhibits",
"version": "0.0.1",
"description": "Framework for building interactive smart exhibits for exhibitions, that can interact with visitors' smartphones.",
"author": "Philipp Legner",
"license": "MIT License",
"main": "app.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "node --use_strict app.js",
"watch": "nodemon --use_strict --ignore 'gruntfile.js' --ignore 'node_modules/**' --ignore 'build/**' --ignore 'assets/**' --ignore 'exhibits/**.js' --ignore '.idea/**' app.js",
"build": "grunt",
"deploy": "grunt && gcloud app deploy --project imaginary-1381"
},
"dependencies": {
"compression": "^1.6.1",
"express": "^4.13.4",
"jade": "^1.11.0",
"serve-favicon": "^2.3.0",
"socket.io": "^1.3.5",
"socket.io-client": "^1.4.0"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"gcloud": "^0.30.2",
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-babel": "^6.0.0",
"grunt-concurrent": "^2.2.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-less": "^1.2.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-sync": "^0.5.2",
"matchdep": "^1.0.1",
"nodemon": "^1.9.1",
"rollup": "^0.25.8"
}
}