-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "grace-shopper-group-3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:dev": "npm run build -- --watch --mode=development",
"lint:src": "eslint src/**",
"test": "JWT=shhhhh mocha",
"test:dev": "DATABASE_URL=postgres://localhost/acme_shopping_test_db npm run test -- --watch",
"test:dev:quiet": "QUIET=true npm run test:dev",
"start:dev": "JWT=felix nodemon server/index.js --ignore dist/ --ignore src/ & npm run build:dev",
"start": "JWT=felix node server/index.js --ignore dist/ --ignore src/",
"seed": "node server/db/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@eslint/create-config": "^0.4.1",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.16",
"@popperjs/core": "^2.11.6",
"@reduxjs/toolkit": "^1.9.1",
"autosuggest-highlight": "^3.3.4",
"bcrypt": "^5.1.0",
"css-loader": "^6.7.2",
"disconnect": "^1.2.2",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"material-ui-popup-state": "^4.1.0",
"pg": "^8.8.0",
"prettier": "^2.8.1",
"recharts": "^2.1.16",
"sequelize": "^6.25.3",
"stripe": "^11.3.0",
"style-loader": "^3.3.1",
"volleyball": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-react": "^7.18.6",
"axios": "^1.1.3",
"babel-loader": "^9.0.0",
"chai": "^4.3.6",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.2",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"supertest": "^6.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}