-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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": "thebus-api",
"version": "1.0.0",
"description": "Honolulu Bus API Practice",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open --mode development",
"build": "webpack --mode production",
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --open --progress --color\" \"nodemon ./server/server.js\""
},
"author": "Adrian Kormier",
"license": "ISC",
"dependencies": {
"@heroicons/react": "^2.0.18",
"async-hooks": "^1.3.1",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongodb": "^5.6.0",
"mongoose": "^7.2.2",
"node-fetch": "^2.6.11",
"path": "^0.12.7",
"postcss-loader": "^7.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.7",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.2",
"concurrently": "^8.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"redux-devtools-extension": "^2.13.9",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3",
"webpack-dev-server": "^4.15.0"
}
}