-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.37 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.37 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
100
101
102
103
104
105
{
"name": "hackjunction-synergy",
"version": "1.0.0",
"description": "Junction 2017 platform",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext js --ext jsx --ext json src",
"test": "yarn lint",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev && true",
"start:dev_windows": "set NODE_ENV=production&& npm run build:server |webpack --config webpack.dev.config.js | node server.js",
"start:dev": "NODE_ENV=development && npx babel --watch -d build server | npm run watch | node server.js",
"start:prod": "npm run build:server && 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",
"build:server": "npx babel -d ./build ./server",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,json}": [
"eslint --fix",
"git add"
]
},
"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-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "8.0.2",
"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.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"fb": "^2.0.0",
"history": "^4.7.2",
"husky": "^0.14.3",
"if-env": "^1.0.0",
"lint-staged": "^5.0.0",
"medium-sdk": "^0.0.4",
"moment": "^2.20.1",
"node-instagram": "^3.0.0",
"node-sass": "^4.9.3",
"npx": "^9.7.1",
"prettier": "^1.8.2",
"prop-types": "^15.5.10",
"pure-react-carousel": "^1.13.2",
"ramda": "^0.24.1",
"rc-menu": "^7.2.6",
"react": "^15.6.1",
"react-burger-menu": "^2.1.6",
"react-cookie-consent": "^1.0.7",
"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-player": "^1.6.4",
"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-scroll-to-component": "^1.0.2",
"react-slick": "^0.14.11",
"redux": "^3.7.2",
"redux-form": "^7.0.3",
"redux-saga": "^0.15.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"xml-js": "^1.4.1",
"yargs": "^8.0.2"
},
"devDependencies": {}
}