-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "sneakers-ecommerce-website",
"version": "1.0.0",
"description": "A fullstack website for trading sneakers",
"main": "index.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"clientinstall": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm install --prefix client && npm run build --prefix client"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.1.0",
"nodemon": "^2.0.15"
},
"dependencies": {
"amazon-sp-api": "^1.0.0",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"deepl-node": "^1.12.0",
"dotenv": "^16.0.1",
"express": "^4.18.0",
"express-validator": "^6.14.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb": "^6.3.0",
"mongoose": "^6.3.1",
"multer": "^1.4.5-lts.1",
"react-highlight-words": "^0.20.0",
"react-hook-form": "^7.33.1",
"redux-persist": "^6.0.0",
"spacy": "^0.0.4",
"spacy-js": "^0.0.5",
"stripe": "^10.0.0",
"url-encode-decode": "^1.0.0",
"xlsx": "^0.18.5"
}
}