-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "project-tracker",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/angular-learning/project-tracker"
},
"license": "MIT",
"description": "An app written using Node.js, Angular and MongoDB is supposed to be learning modern technologies app",
"main": "run.js",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"lodash": "^4.15.0",
"mongoose": "^4.5.10",
"morgan": "^1.7.0",
"q": "^1.4.1"
},
"engines": {
"node": "6.4.0"
},
"scripts": {
"start": "npm run prepare && npm run build && npm run run-server",
"prepare": "npm i",
"run-server": "node run.js",
"dev": "npm run build && SET NODE_ENV=dev& SET PORT=3001& npm run run-server",
"build": "npm run gulp build",
"test": "npm run gulp test",
"livereload": "SET SERVER_PORT=3001& npm run gulp livereload",
"gulp": "./node_modules/.bin/gulp",
"bower:install": "./node_modules/.bin/bower install",
"postinstall": "npm run bower:install"
},
"devDependencies": {
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-angular-filesort": "^1.1.1",
"gulp-inject": "^4.1.0",
"gulp-server-livereload": "^1.8.4",
"gulp-util": "^3.0.7",
"karma": "^1.3.0",
"main-bower-files": "^2.13.1",
"sort-stream": "^1.0.1",
"bower": "1.8.0"
},
"cacheDirectories": [
"node_modules",
"public/vendors"
]
}