-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (96 loc) · 2.96 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
93
94
95
96
{
"name": "sourcegrade",
"version": "3.0.0",
"description": "A web scraper for gradesource.com",
"main": "server.js",
"author": "Joel Sequeira",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production webpack -p --progress --profile --colors && node index",
"start:dev": "cross-env NODE_ENV=development nodemon index",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:cov": "cross-env NODE_ENV=test jest --coverage",
"lint": "eslint client server"
},
"dependencies": {
"async": "^2.6.0",
"autoprefixer": "^7.1.2",
"axios": "^0.17.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"cheerio": "^0.20.0",
"compression": "^1.7.1",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cors": "^2.8.4",
"cross-env": "^5.1.3",
"css-loader": "^0.28.5",
"dotenv": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.15.4",
"express-rate-limit": "^2.11.0",
"extract-text-webpack-plugin": "^3.0.0",
"helmet": "^3.9.0",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"jwt-simple": "^0.5.1",
"mongoose": "^4.11.7",
"morgan": "^1.9.0",
"node-sass": "^4.5.3",
"nodemon": "^1.14.11",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.2.0",
"react-bootstrap": "^0.32.0",
"react-dom": "^16.2.0",
"react-fontawesome": "^1.6.1",
"react-google-charts": "^1.5.5",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.6",
"react-router-auth": "1.0.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-router-prop-types": "^0.0.3",
"react-router-redux": "^5.0.0-alpha.9",
"react-select": "^1.0.0-rc.1",
"redux": "^3.7.2",
"redux-form": "^7.2.1",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"stats-lite": "^2.1.0",
"style-loader": "^0.18.2",
"styled-components": "^3.1.0-3",
"supertest": "^3.0.0",
"valid-url": "^1.0.9",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-styled-components": "^1.5.0",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.1.4",
"react-test-renderer": "^16.2.0"
}
}