-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.83 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.83 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
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
99
{
"name": "photoquest",
"version": "1.0.0",
"jscs": "2.2.1",
"description": "photoquest",
"scripts": {
"build": "webpack",
"build:dev": "webpack --config webpack.dev.config.js",
"deploy:dynamic": "git push heroku master",
"deploy:static": "surge -p ./public -d hackathonteam2.surge.sh",
"deploy": "npm-run-all deploy:*",
"dev": "webpack --config webpack.dev.config.js && npm run start:dev",
"env:auth0": "heroku config:get AUTH0_CLIENTSECRET --app yahackteam2 -s > config/auth.txt",
"env:cloudinary": "heroku config:get CLOUDINARY_URL --app yahackteam2 -s > config/cloudinary.txt",
"env": "npm-run-all env:*",
"filldb": "node --harmony scripts/fillDB.js",
"lint": "npm run lint:css & npm run lint:js",
"lint:css": "stylelint **/*.css",
"lint:js": "jscs .",
"precommit": "npm run test & npm run lint",
"start": "node --harmony app.js",
"start:dev": "node --harmony app.js --NODE_ENV=development",
"test": "mocha --harmony --recursive tests/ --STATUS=testing"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urfu-2015/team2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/urfu-2015/team2/issues"
},
"homepage": "https://github.com/urfu-2015/team2#readme",
"devDependencies": {
"async": "2.0.0-rc.4",
"autoprefixer": "6.3.3",
"babel-core": "6.7.7",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"css-loader": "0.23.1",
"cssnano": "3.5.2",
"extract-text-webpack-plugin": "1.0.1",
"faker": "3.1.0",
"file-loader": "0.8.5",
"handlebars": "4.0.5",
"handlebars-loader": "1.3.0",
"husky": "0.11.3",
"jscs": "2.11.0",
"mocha": "2.4.5",
"mockery": "1.4.1",
"morgan": "1.7.0",
"nock": "8.0.0",
"npm-run-all": "1.5.3",
"postcss-loader": "0.8.2",
"should": "8.3.1",
"sinon": "1.17.3",
"style-loader": "0.13.0",
"stylelint": "5.0.1",
"stylelint-config-standard": "4.0.1",
"supertest": "1.2.0",
"surge": "0.17.7",
"svg-loader": "0.0.2",
"webpack": "1.12.14"
},
"dependencies": {
"bluebird": "3.3.4",
"body-parser": "1.15.0",
"cloudinary": "1.3.1",
"config": "1.20.1",
"cookie-parser": "1.4.1",
"express": "4.13.4",
"express-favicon": "1.0.1",
"express-session": "1.13.0",
"geolib": "^2.0.21",
"handlebars-layouts": "3.1.3",
"hbs": "4.0.0",
"jquery-touchswipe": "1.6.15",
"http-errors": "1.4.0",
"minimist": "1.2.0",
"mongoose": "4.4.10",
"morgan": "1.7.0",
"passport": "0.3.2",
"passport-auth0": "0.5.1"
},
"contributors": [
"Aksenova Natalia",
"Kuznecov Vasilii",
"Lopes Luis",
"Sorokin Vlad",
"Pestov Nikita",
"Rybalka Ekaterina",
"Latypova Ekaterina"
],
"engines": {
"node": "4.4.0"
}
}