-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.81 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
46
47
48
49
50
51
52
{
"name": "strength-tracker",
"private": true,
"version": "0.0.0",
"description": "A strength tracking application",
"repository": "https://github.com/toddjordan/strength-tracker",
"license": "MIT",
"devDependencies": {
"bower": "^1.3.1",
"gulp": "^3.8.11",
"gulp-jshint": "^1.9.2",
"http-server": "^0.6.1",
"jasmine": "^2.2.1",
"jasmine-core": "^2.2.0",
"jshint-stylish": "^1.0.1",
"karma": "^0.12.31",
"karma-coverage": "^0.2.7",
"karma-html-reporter": "^0.2.4",
"karma-jasmine": "^0.3.5",
"karma-junit-reporter": "^0.2.2",
"mongodb": "^1.4.34",
"protractor": "^1.8.0",
"shelljs": "^0.2.6"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "nodemon ./bin/www",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run --reporters html,dots",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=public/app/bower_components/angular-loader/angular-loader.min.js.map','public/app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'public/app/index-async.html');\""
},
"dependencies": {
"body-parser": "~1.10.2",
"cookie-parser": "~1.3.3",
"debug": "~2.1.1",
"express": "~4.11.1",
"jade": "~1.9.1",
"morgan": "~1.5.1",
"serve-favicon": "~2.2.0"
},
"files": [
"public",
"routes",
"app.js"
]
}