-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "project4",
"version": "1.0.0",
"private": true,
"description": "Project 4 - Learn ReactJS",
"main": "webServer.js",
"scripts": {
"build": "webpack --devtool eval-cheap-module-source-map --output-pathinfo",
"build:w": "webpack --devtool eval-cheap-module-source-map --output-pathinfo --watch",
"lint": "eslint *.jsx components/*/*.jsx || exit 0"
},
"author": "Mendel Rosenblum <[email protected]> ",
"contributors": [
"Todd Dobbs <[email protected]> (https://orcid.org/0000-0001-6711-6962)"
],
"license": "ISC",
"dependencies": {
"express": "^4.17.2",
"file-loader": "^6.2.0",
"prismjs": "^1.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/core": "^7.16.12",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-stage-2": "^7.8.3",
"css-loader": "^6.5.1",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}