-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "app-dash",
"version": "2.0.0",
"description": "A dashboard for managing links to your applications",
"main": "server/server.js",
"scripts": {
"start": "node -r dotenv/config server/server.js",
"start:prod": "node server/server.js",
"local:seed": "docker-compose up -d mongo; node test/seeder.mjs",
"local:watch": "export MONGO_URI=\"mongodb://mongo:secretPassword@localhost:27017\"; npm run watch",
"local:start": "export MONGO_URI=\"mongodb://mongo:secretPassword@localhost:27017\"; npm run start",
"local:stop": "docker-compose down",
"build": "webpack",
"watch": "webpack --watch --mode=development & nodemon -r dotenv/config server/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Burton Rheutan",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.2",
"@mui/material": "^5.8.2",
"@reduxjs/toolkit": "^1.8.3",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.18.1",
"formik": "^2.2.9",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.6.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"sharp": "^0.30.6",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@faker-js/faker": "^8.2.0",
"babel-loader": "^8.2.5",
"dotenv": "^16.0.1",
"inquirer": "^9.2.11",
"nodemon": "^2.0.18",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1"
}
}