-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 873 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
{
"name": "SimpleQRAuth",
"version": "1.0.0",
"description": "A prototype for a QR code authenticator",
"scripts": {
"test": "concurrently --kill-others \"npm run gulp\" \"npm run serve\"",
"build": "gulp build-qr && gulp sass",
"install": "gulp install",
"serve": "nodemon server.js && exit 1",
"gulp": "gulp watch"
},
"dependencies": {
"express": "^4.15.2",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.0.4",
"gulp-sourcemaps": "^2.5.1",
"gulp-uglify": "^2.1.2",
"node-persist": "^2.0.10",
"node-uuid": "^1.4.8",
"shortid": "^2.2.8"
},
"devDependencies": {
"bower": "^1.3.3",
"concurrently": "^3.4.0",
"gulp-bower": "0.0.13",
"gulp-util": "^2.2.14",
"nodemon": "^1.11.0",
"shelljs": "^0.3.0"
}
}