-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 4.01 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
{
"name": "lantern-hoard",
"description": "[![Stories in Ready](https://badge.waffle.io/waterfoul/Lantern-Hoard.svg?label=ready&title=Ready)](http://waffle.io/waterfoul/Lantern-Hoard) [![Build Status](https://travis-ci.org/waterfoul/Lantern-Hoard.svg?branch=master)](https://travis-ci.org/waterfoul/Lantern-Hoard) [![Heroku](https://heroku-badge.herokuapp.com/?svg=1&app=lantern-hoard)](https://lantern-hoard.herokuapp.com/)",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/waterfoul/Lantern-Hoard.git"
},
"author": "Aaron Aichlmayr, Jason Lam, Jason Powell",
"license": "ISC",
"bugs": {
"url": "https://github.com/waterfoul/Lantern-Hoard/issues"
},
"homepage": "https://lantern-hoard.herokuapp.com",
"dependencies": {
"body-parser": "^1.17.1",
"bootstrap-sass": "^3.3.7",
"cookie-session": "^2.0.0-beta.1",
"express": "^4.15.2",
"express-winston": "^2.3.0",
"font-awesome": "^4.7.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.10",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.4",
"pg-hstore": "^2.3.2",
"pg-native": "^1.10.0",
"redux": "^3.6.0",
"sequelize": "^3.30.2",
"sockjs": "^0.3.18",
"winston": "^2.3.1",
"yargs": "^7.0.2"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"axios": "^0.15.3",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bootstrap-social": "^5.1.1",
"bootswatch-sass": "^3.2.0",
"bowser": "^1.6.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"concurrently": "^3.4.0",
"cross-env": "^3.2.4",
"cssnano": "^3.10.0",
"eslint": "^3.17.1",
"eslint-config-fullstack": "^2.7.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"postcss-cli": "^3.0.0",
"react": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0",
"redux-devtools-extension": "^2.13.0",
"redux-thunk": "^2.2.0",
"sockjs-client": "^1.1.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2",
"webpack-livereload-plugin": "^0.10.0"
},
"scripts": {
"build": "npm --silent run build-js && npm --silent run build-css-prod",
"build-js": "webpack",
"build-css": "node-sass --source-map ./browser/static/index.css.map --output-style compressed browser/index.scss -o ./browser/static/",
"build-js-watch": "npm --silent run build-js -- -w",
"build-css-watch": "npm --silent run build-css && npm --silent run build-css -- -w",
"build-js-dev": "cross-env NODE_ENV=development npm --silent run build-js-watch",
"build-postcss": "postcss ./browser/static/index.css --use autoprefixer --use cssnano -d ./browser/static 2>&1 --map ./browser/static/index.css.map | grep -v grid-row-end",
"build-css-prod": "npm --silent run build-css && npm --silent run build-postcss",
"start": "node . -p $PORT",
"start-watch": "nodemon . --watch server --watch common --",
"start-dev": "cross-env NODE_ENV=development npm --silent run start-watch -- --config $HOME/.lantern-hoard.json -vv",
"dev": "cross-env NODE_ENV=development concurrently --kill-others --prefix \"[{name}]\" --names \" JS,SERVE, CSS\" -c \"bgBlue.bold.black,bgGreen.bold.black,bgBlack.bold.white\" \"npm --silent run build-js-dev\" \"npm --silent run start-dev\" \"npm --silent run build-css-watch\"",
"test": "mocha --compilers js:babel-register browser/**/*.test.js browser/**/*.test.jsx server/**/*.test.js common/**/*.test.js browser/**/**/*.test.js",
"test-watch": "npm --silent run test -- --watch",
"seed": "node server/db/seed.js",
"heroku-prebuild": "./bin/heroku-prebuild.sh",
"lint": "eslint --ext js,jsx .",
"ci": "npm --silent run lint -- --quiet && npm --silent run test",
"fix": "eslint --ext js,jsx . --fix"
}
}