-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "acme-shopping-2207-fsa-pt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:dev": "npm run build -- --watch --mode=development",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"notistack": "^2.0.8",
"pg": "^8.8.0",
"react-icons": "^4.10.1",
"sequelize": "^6.25.3",
"stripe": "^10.17.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.10.12",
"@mui/styled-engine-sc": "^5.10.6",
"axios": "^1.1.3",
"babel-loader": "^9.0.0",
"chai": "^4.3.6",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.6",
"supertest": "^6.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}