forked from ericpkatz/acme-shopping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "the-acme-auth-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:dev": "npm run build -- --watch --mode=development",
"test": "mocha spec.js",
"test:dev": "QUIET=true JWT=shh DATABASE_URL=postgres://localhost/acme_db_test npm test -- --watch",
"start:dev": "STRIPE_API_KEY=sk_test_4eC39HqLyjWDarjtT1zdp7dc JWT=shhh nodemon server --ignore src/ --ignore dist/ & npm run build:dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^7.4.0",
"bcrypt": "^5.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"redux-logger": "^3.0.6",
"sequelize": "^6.21.3",
"serve-favicon": "^2.5.0",
"stripe": "^10.5.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^5.3.3",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"supertest": "^6.2.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}