-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "project6",
"version": "1.0.0",
"description": "CS142 Project #6 - Appserver and Database (React)",
"main": "webServer.js",
"scripts": {
"build": "node_modules/.bin/webpack -d",
"build:w": "node_modules/.bin/webpack -d --watch",
"lint": "node_modules/.bin/eslint webServer.js loadDatabase.js *.jsx components/*/*.jsx lib/*.js"
},
"author": "Mendel Rosenblum <[email protected]> ",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"async": "^2.6.0",
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express-session": "^1.17.0",
"file-loader": "^3.0.1",
"js-yaml": "^3.13.1",
"mongoose": "^5.9.1",
"nodemon": "^1.19.4",
"prismjs": "^1.15.0",
"promise": "^8.0.2",
"react": "^16.5.2",
"react-calendar": "^3.0.0",
"react-dom": "^16.5.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"url-loader": "^1.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"style-loader": "^0.23.0",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.2"
},
"private": true
}