-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "pm",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"body-parser": "~1.12.4",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"ejs": "~2.3.1",
"express": "~4.12.4",
"morgan": "~1.5.3",
"serve-favicon": "~2.2.1"
},
"devDependencies": {
"browserify": "^11.0.1",
"d3": "^3.5.6",
"install": "^0.1.8",
"npm": "^2.13.3"
},
"scripts": {
"start": "watchify -o public/javascripts/bundle.js -v -d public/javascripts/main.js",
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js",
"test": "jest"
},
"description": "project manager app",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lenxeon/project-manager.git"
},
"keywords": [
"project",
"manager",
"app"
],
"author": "lenxeon",
"license": "ISC",
"bugs": {
"url": "https://github.com/lenxeon/project-manager/issues"
},
"homepage": "https://github.com/lenxeon/project-manager#readme"
}