forked from news-stand/news_stand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.03 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
{
"name": "news_stand",
"version": "1.0.0",
"description": "> The goal of News Stand is to provide users a clean, all-in-one place to find, consume, and comment on the news. News sites are fragmented and RSS feeds don’t allow users to comment, so we want to combine the two.",
"author": "",
"license": "",
"engines": {
"node": "8.4.0"
},
"scripts": {
"build:server": "babel ./app/server -d build/server",
"build:watch:server": "babel ./app/server -d build/server --watch",
"build:client": "webpack --config ./webpack.config.js/",
"build:watch:client": "webpack --config ./webpack.config.js/ --watch",
"build:prod": "npm run build:server && npm run build:client",
"start": "npm run build:prod && NODE_ENV=production node ./build/server/index.js",
"start:dev": "parallelshell 'npm run build:watch:server' 'npm run build:watch:client' 'nodemon ./build/server/index.js'",
"start:dev:client": "webpack-dev-server",
"test": "./node_modules/.bin/jasmine-node test/server"
},
"dependencies": {
"autosuggest-highlight": "^3.1.1",
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.7.2",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"css-loader": "^0.28.7",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"html-webpack-plugin": "^2.30.1",
"material-ui": "^1.0.0-beta.22",
"material-ui-icons": "^1.0.0-beta.17",
"moment": "^2.19.3",
"mongoose": "^4.13.2",
"morgan": "^1.9.0",
"mui-icons": "^1.2.1",
"node-uniq": "^0.2.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-autosuggest": "^9.3.2",
"react-confirm-alert": "^1.0.8",
"react-dom": "^16.1.1",
"react-infinite-scroll-component": "^2.5.0",
"react-modal": "^3.1.6",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"devDependencies": {
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jasmine-core": "^2.8.0",
"jasmine-expect": "^3.8.1",
"jasmine-node": "^1.14.5",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-matchers": "^3.7.0",
"karma-nyan-reporter": "^0.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"moment-range": "^3.0.3",
"nodemon": "^1.12.1",
"parallelshell": "^3.0.2",
"request": "^2.83.0"
},
"homepage": "https://github.com/katm201/news_stand#readme"
}