forked from No-Sleep-Till-Thesis/Comparable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.5 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
{
"name": "Comparable",
"version": "1.0.0",
"description": "Compare you job offer with you current market, and see how it stacks up.",
"main": "./src/index.jsx",
"scripts": {
"start": "node ./server/index.js",
"test": "mocha --compilers js:babel-core/register \"test/**/*@(.js|.jsx)\"",
"test:watch": "npm run test -- --watch",
"webpack:deploy": "NODE_ENV=production webpack --config webpack.prod.config.js --progress --colors",
"heroku-postbuild": "npm run webpack:deploy",
"postinstall": "node ./server/utils/angelList.js",
"lint": "eslint src server"
},
"repository": {
"type": "git",
"url": "https://github.com/justinTime225/Comparable.git"
},
"keywords": [
"react",
"redux",
"d3",
"es6",
"express",
"node",
"webpack"
],
"author": "Ryan Haase, Trevor Pace, Justin Nguyen",
"license": "ISC",
"bugs": {
"url": "https://github.com/justinTime225/Comparable/issues"
},
"homepage": "https://github.com/justinTime225/Comparable",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-react": "^5.0.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"supertest": "^1.2.0",
"url-loader": "^0.5.6",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"auth0-lock": "^9.1.2",
"axios": "^0.11.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.1",
"bootstrap": "^3.3.6",
"css-loader": "^0.23.1",
"d3": "^3.5.16",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"lodash": "^4.12.0",
"lodash.assign": "^4.0.8",
"mongoose": "^4.4.16",
"node-sass": "^3.4.2",
"react": "^0.14.3",
"react-bubble-chart": "^0.4.0",
"react-d3-components": "^0.6.3",
"react-dom": "^0.14.3",
"react-modal": "^1.2.1",
"react-redux": "^4.0.0",
"react-router": "^2.0.0-rc5",
"react-slick": "^0.12.2",
"redux": "^3.0.4",
"redux-form": "^5.2.3",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"request-promise": "^3.0.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"transform-loader": "^0.2.3",
"underscore": "^1.8.3",
"webpack": "^1.12.9"
}
}