-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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": "born_to_code_storefront",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.0.2",
"bcrypt": "^5.1.0",
"bootstrap": "^5.3.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"formik": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.8.0",
"postmark": "^3.0.19",
"query-string": "^8.1.0",
"react-bootstrap": "^2.8.0",
"react-square-web-payments-sdk": "^3.2.1",
"react-star-ratings": "^2.3.0",
"request": "^2.88.2",
"sequelize": "^6.25.3",
"square": "^29.0.0",
"volleyball": "^1.5.1",
"yup": "^1.2.0"
},
"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",
"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",
"supertest": "^6.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}