-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.62 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.62 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
{
"name": "hackjunction-synergy",
"version": "1.0.0",
"description": "Junction 2017 platform",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext js --ext jsx src",
"test": "echo \"Error: no test specified\" && exit 0",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev && true",
"start:dev": "NODE_ENV=development babel-watch -w src server.js",
"start:prod": "npm run build:webpack && node server.js",
"watch": "webpack --watch --config webpack.dev.config.js",
"build:webpack": "NODE_ENV=production webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackjunction/Synergy.git"
},
"author": "Junction volunteer team",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackjunction/Synergy/issues"
},
"homepage": "https://github.com/hackjunction/Synergy#readme",
"dependencies": {
"axios": "^0.16.2",
"babel": "6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.7",
"cheerio": "^1.0.0-rc.2",
"classnames": "^2.2.5",
"clean-webpack-plugin": "0.1.17",
"css-loader": "^0.28.5",
"dotenv": "^4.0.0",
"eslint": "4.10.0",
"eslint-config-airbnb": "16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "7.4.0",
"express": "^4.15.4",
"extract-text-webpack-plugin": "3.0.2",
"fb": "^2.0.0",
"history": "^4.7.2",
"if-env": "^1.0.0",
"medium-sdk": "^0.0.4",
"node-instagram": "^3.0.0",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.6.1",
"react-burger-menu": "^2.1.6",
"react-dom": "^15.6.1",
"react-flexbox-grid": "1.1.3",
"react-fontawesome": "^1.6.1",
"react-hot-loader": "^1.3.1",
"react-media": "^1.6.1",
"react-redux": "^5.0.6",
"react-rotating-text": "^1.2.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "next",
"react-scroll": "^1.5.4",
"react-slick": "^0.14.11",
"redux": "^3.7.2",
"redux-form": "^7.0.3",
"redux-saga": "0.16.0",
"sass-loader": "^6.0.6",
"style-loader": "0.19.0",
"webpack": "3.8.1",
"xml-js": "1.5.1",
"yargs": "^8.0.2"
},
"devDependencies": {}
}