-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.74 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.74 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
{
"name": "school-rankings",
"version": "1.0.0",
"description": "Indiana School Rankings",
"main": "",
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"ajv": "^6.12.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"bootstrap": "^4.4.1",
"clean-webpack-plugin": "^3.0.0",
"commander": "^3.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dateformat": "^3.0.3",
"file-loader": "^4.3.0",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.5-beta.2",
"gulp": "^4.0.2",
"gulp-less": "^4.0.1",
"gulp-notify": "^3.2.0",
"gulp-phpcs": "^3.1.0",
"gulp-phpunit": "^0.26.0",
"gulp-util": "^3.0.8",
"jquery": "^3.4.1",
"jshint": "^2.11.0",
"jshint-stylish": "^2.2.1",
"jstree": "^3.3.9",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.15",
"lodash.template": "^4.5.0",
"node-sass": "^4.13.1",
"npm": "^6.14.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"popper.js": "^1.16.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-ga": "^2.7.0",
"react-input-range": "^1.3.0",
"react-select": "^3.0.8",
"reactstrap": "^8.4.1",
"sass-loader": "^8.0.2",
"semver": "^6.3.0",
"style-loader": "^1.1.3",
"through2": "^3.0.1",
"uglify-js": "^3.8.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"universal-cookie": "^4.0.3",
"utf8-binary-cutter": "^0.9.2",
"uuid": "^3.4.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.19.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gulp-eslint": "^6.0.0",
"postcss-import": "^12.0.1"
},
"repository": {
"type": "",
"url": ""
},
"scripts": {
"lint": "eslint webroot/js/* --ext .js,.jsx",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development --config webpack.dev.js",
"build": "webpack --mode production --config webpack.prod.js",
"watch": "webpack --watch --mode development --config webpack.dev.js"
},
"author": "Ball State University Center for Business and Economic Research",
"license": "MIT",
"readme": "",
"sideEffects": [
"*.css",
"*.scss"
],
"browserslist": [
"defaults"
]
}