-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "wcs-points-frontend",
"version": "1.0.0",
"homepage": "http://IllinoisWCS.github.io/wcs-points-frontend",
"description": "",
"main": "index.jsx",
"scripts": {
"watch": "webpack -d --watch",
"build": "webpack",
"dev": "webpack-dev-server --content-base public/ --history-api-fallback",
"predeploy": "npm run build",
"deploy": "gh-pages -d public",
"prepare": "husky install"
},
"author": "Simon Lu",
"license": "ISC",
"lint-staged": {
"source/**/*.{js,jsx,scss}": [
"prettier --write",
"eslint --fix"
],
"*.js": "eslint --cache --fix"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^6.7.7",
"babel-loader": "^8.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"node-sass": "^4.12.0",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"axios": "^0.21.1",
"cors": "^2.8.5",
"moment": "^2.24.0",
"normalize.css": "^6.0.0",
"npm": "^6.4.1",
"prettier": "^2.8.3",
"react": "^16.13.0",
"react-bootstrap": "^0.30.10",
"react-dom": "^16.13.0",
"react-notify-toast": "^0.5.0",
"react-router": "^4.0.0",
"react-router-dom": "^5.3.0",
"semantic-ui-react": "^0.77.2"
}
}