-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "starterpack-ray-hc",
"version": "1.0.0",
"description": "My short assignment!",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve",
"test": "eslint src",
"build": "npm run clean; NODE_ENV=production webpack --color; cp -f _redirects dist/",
"winbuild": "npm run clean & SET NODE_ENV=production& webpack --color",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dartmouth-cs52-21S/starterpack-ray-hc.git"
},
"keywords": [
"starterpack"
],
"author": "Ray Crist",
"license": "ISC",
"bugs": {
"url": "https://github.com/dartmouth-cs52-21S/starterpack-ray-hc/issues"
},
"homepage": "https://github.com/dartmouth-cs52-21S/starterpack-ray-hc#readme",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.2",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.3",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.4.1",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.10",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"axios": "^0.21.1",
"html-webpack-plugin": "^5.3.1",
"jquery": "^3.6.0",
"lodash.debounce": "^4.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0"
}
}