-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "abba",
"version": "1.0.0",
"description": "An app to predict short-term rental income for homeowners and renters.",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js",
"build-watch": "./node_modules/webpack/bin/webpack.js -w",
"frontend-test": "./node_modules/karma/bin/karma start --single-run",
"test-watch": "./node_modules/karma/bin/karma start",
"start": "node server.js",
"start-debug": "DEBUG='abba*' npm start",
"heroku-postbuild": "./node_modules/webpack/bin/webpack.js",
"start-watch": "DEBUG='abba*' ./node_modules/nodemon/bin/nodemon.js server.js",
"backend-test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha ./backend-test",
"test": "npm run frontend-test && npm run backend-test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "./node_modules/eslint/bin/eslint.js .",
"test-debug": "DEBUG='abba*' ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamstelle/abba.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adamstelle/abba/issues"
},
"homepage": "https://github.com/adamstelle/abba#readme",
"dependencies": {
"aws-mocks": "0.0.10",
"aws-sdk-mock": "1.5.0",
"bcrypt": "0.8.7",
"bluebird": "3.4.6",
"body-parser": "1.15.2",
"chai": "3.5.0",
"cors": "2.8.1",
"coveralls": "2.11.14",
"debug": "2.2.0",
"dotenv": "^2.0.0",
"express": "4.14.0",
"http-errors": "1.5.0",
"istanbul": "0.4.5",
"lorem-ipsum": "1.0.3",
"mocha": "^3.1.0",
"mocha-pretty-bunyan-nyan": "^1.0.3",
"mongoose": "4.6.3",
"nodemon": "1.11.0",
"superagent": "2.3.0",
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-route": "^1.5.8",
"angular-touch": "^1.5.8",
"angular-ui-bootstrap": "^2.2.0",
"angular-ui-router": "^0.3.1",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"bootstrap-sass": "^3.3.7",
"camelcase": "^3.0.0",
"clean-webpack-plugin": "^0.1.13",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"node-sass": "^3.10.1",
"pascalcase": "^0.1.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ui-router": "^1.0.0-alpha.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"angular-mocks": "^1.5.8",
"aws-sdk": "2.6.7",
"bootstrap": "^3.3.7",
"crypto": "0.0.3",
"del": "2.2.2",
"eslint": "^3.8.1",
"jasmine-core": "^2.5.2",
"jsonwebtoken": "7.1.9",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"morgan": "^1.7.0",
"multer": "1.2.0",
"ng-file-upload": "^12.2.13",
"webpack-dev-server": "^1.16.2"
}
}