-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.52 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
{
"name": "hello-nodejs",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy:view": "copyfiles -f src/client/views/*.* public/views",
"copy:img": "copyfiles -f src/client/images/*.* public/images",
"copy:html": "copyfiles -f src/client/index.html public && copyfiles -f src/client/partials/*.html public/partials",
"copy": "npm run copy:html && npm run copy:img && npm run copy:view",
"build:js": "browserify src/client/app/app.js -o public/app.js",
"build:hint": "jshint src/client/app",
"build": "npm run build:hint && npm run build:js",
"watch": "watchify src/client/app/app.js -o public/app.js -v",
"start": "npm run build && npm run copy && node server.js",
"start-dev": "npm run watch | npm start",
"postinstall": "bower install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesumarquez/hello-nodejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jesumarquez/hello-nodejs/issues"
},
"homepage": "https://github.com/jesumarquez/hello-nodejs#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.0",
"bower": "^1.7.9",
"express": "^4.13.4",
"jwt-simple": "^0.5.0",
"mongoose": "^4.4.12",
"passport": "^0.3.2",
"passport-jwt": "^2.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"copyfiles": "^0.2.1",
"jshint": "^2.9.1",
"watchify": "^3.7.0"
}
}