-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
{
"name": "team5",
"version": "0.0.0",
"private": true,
"engines": {
"node": "7.6"
},
"scripts": {
"start": "cross-env NODE_ENV=development \"npm run prep && node index.js\"",
"review": "cross-env NODE_ENV=review \"node ./scripts/generate-db-data-console.js && webpack && node index.js\"",
"production": "cross-env NODE_ENV=production \"node index.js\"",
"prep": "npm run generate && npm run build",
"lint": "npm run lint:style && npm run lint:js",
"lint:style": "stylelint --ignore-path .gitignore *.css **/*.css",
"lint:js": "eslint --ignore-path .gitignore .",
"test": "cross-env NODE_ENV=tests mocha --recursive ./tests --timeout 15000",
"generate": "node ./scripts/generate-db-data-console.js",
"build": "webpack",
"prepush": "npm run lint && npm run test",
"precommit": "npm run lint",
"eslint-fix": "eslint --fix ."
},
"dependencies": {
"b_": "^1.3.3",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"bcrypt": "^1.0.2",
"body-parser": "~1.16.0",
"cloudinary": "^1.9.0",
"command-line-args": "^4.0.2",
"config": "^1.25.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "~1.4.3",
"cross-env": "^4.0.0",
"css-loader": "^0.27.3",
"datauri": "^1.0.5",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"emailjs": "^1.0.8",
"express": "~4.14.1",
"express-session": "^1.15.2",
"express-simple-cdn": "^1.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"geolib": "^2.0.22",
"global": "^4.3.1",
"handlebars": "^4.0.8",
"handlebars-helper-equal": "^1.0.0",
"handlebars-layouts": "^3.1.4",
"hbs": "~4.0.1",
"http-status-codes": "^1.1.6",
"image-webpack-loader": "^3.3.0",
"moment": "^2.18.1",
"mongoose": "^4.8.6",
"morgan": "~1.7.0",
"multer": "^1.3.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pbkdf2": "^3.0.9",
"postcss-loader": "^2.0.5",
"query-string": "^4.3.2",
"react-dropzone": "^3.13.1",
"serve-favicon": "~2.3.2",
"shortid": "^2.2.8",
"slug": "^0.9.1",
"style-loader": "^0.16.0",
"webpack": "^2.3.2",
"whatwg-fetch": "^2.0.3",
"connect-multiparty": "latest"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.17.1",
"eslint-config-xo": "^0.17.0",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.2",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"sinon": "^2.2.0",
"stylefmt": "^5.2.0",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0"
}
}