-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
102 lines (102 loc) · 3.09 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
97
98
99
100
101
102
{
"name": "OneRepoToRuleThemAll",
"version": "1.0.0",
"private": true,
"description": "The SSE's new and improved frontend",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=development BABEL_ENV=development node ./server.js",
"build": "cross-env NODE_ENV=production BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.prod.js",
"debug": "cross-env DEBUG=true npm run build -- --display-optimization-bailout",
"lint": "cross-env eslint --ext .js --ext .jsx app",
"validate": "cross-env npm ls"
},
"contributors": [
{
"name": "Kristen Mills",
"email": "[email protected]"
},
{
"name": "Dylan Vuz",
"email": "[email protected]"
},
{
"name": "Bill Dybas",
"email": "[email protected]"
},
{
"name": "Gavriel Rachael-Homann",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rit-sse/OneRepoToRuleThemAll.git"
},
"author": "Society of Software Engineers",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"blueimp-md5": "^2.7.0",
"classnames": "^2.2.5",
"connected-react-router": "^4.3.0",
"formik": "^1.3.0",
"history": "^4.6.1",
"moment": "^2.20.1",
"moment-range": "^3.1.0",
"prop-types": "^15.5.9",
"qs": "^6.4.0",
"react": "^16.9.0",
"react-datetime": "^2.14.0",
"react-dom": "^16.9.0",
"react-markdown": "4.3.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.1.1",
"react-select": "^1.2.0",
"react-toggle": "^4.0.2",
"reactstrap": "^5.0.0",
"redux": "^3.7.2",
"redux-devtools": "^3.4.1",
"redux-thunk": "^2.2.0",
"sse-api-client": "git+https://github.com/rit-sse/api-client.git",
"styled-components": "^3.2.3",
"torque-react": "3.1.1",
"yup": "^0.26.6"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-imports": "^1.4.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.3",
"css-loader": "^0.26.4",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-sse": "github:rit-sse/eslint",
"eslint-import-resolver-webpack": "^0.8.2",
"eslint-plugin-import": "^2.5.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^0.9.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"markdown-loader": "^2.0.2",
"node-sass": "^4.9.3",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^0.6.2",
"webpack": "^3.0.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "3.0.0"
}
}