-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "sky-line-ecommerce",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.11.0",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"mongojs": "^3.1.0",
"mongoose": "^5.10.11",
"mongoose-bcrypt": "^1.9.0",
"multer": "^1.4.2",
"nodemon": "^2.0.6",
"object-path": "^0.11.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-phone-input-2": "^2.13.9",
"react-phone-number-input": "^3.1.6",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-select": "^3.1.1",
"stripe": "^8.127.0"
},
"devDependencies": {},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node app.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmcgargill/sky-limit-ecommerce.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vmcgargill/sky-limit-ecommerce/issues"
},
"homepage": "https://github.com/vmcgargill/sky-limit-ecommerce#readme"
}