forked from Pink-Fairy/InterviewTracker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "InterviewTracker",
"version": "1.0.0",
"description": "One-Shop-Stop for Engineers on the Road to get Hired",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon server/server.js",
"build": "cross-env NODE_ENV=production webpack --hot",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon server/server.js\" \"webpack serve --hot\"",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TaylorMorgan7/InterviewTracker.git"
},
"keywords": [],
"author": "Pink Fairy Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/TaylorMorgan7/InterviewTracker/issues"
},
"homepage": "https://github.com/TaylorMorgan7/InterviewTracker#readme",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"axios": "^0.21.0",
"babel-eslint": "^10.1.0",
"babel-runtime": "^6.26.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.11",
"node-sass": "^4.14.1",
"passport": "^0.4.1",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-calendar": "^3.1.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.5",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@shelf/jest-mongodb": "^1.2.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"html-webpack-plugin": "^4.5.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.2",
"nodemon": "^2.0.6",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0",
"supertest": "^6.0.0",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
}
}