-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "movy",
"version": "1.0.0",
"description": "A simple web-based movie manager.",
"main": "index.js",
"scripts": {
"start": "npm run build && node index.js",
"build": "gulp build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dezitter/movy.git"
},
"author": "Laurent Dezitter <laurent.dezitter@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dezitter/movy/issues"
},
"homepage": "https://github.com/dezitter/movy#readme",
"dependencies": {
"bcrypt": "^1.0.1",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"debug": "^2.3.3",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"glob": "^7.1.1",
"nedb": "^1.8.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta6",
"tmdb-v3": "^2.2.1",
"yargs": "^6.5.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"browser-sync": "^2.18.2",
"browserify": "^13.1.1",
"browserify-shim": "^3.8.12",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"node-sass": "^3.13.0",
"nodemon": "^1.11.0",
"pugify": "^2.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"browserify-shim",
"pugify"
]
},
"browserify-shim": {
"angular": "global:angular"
}
}