-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "react-shopper",
"version": "0.1.0",
"description": "Full-stack ecommerce app made with create-react-app client and Node server",
"engines": {
"node": "14.15.5"
},
"scripts": {
"start": "node server",
"dev:server": "nodemon server",
"dev:client": "cd client && npm start",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build": "cd client && npm install && npm run build"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"@craco/craco": "^6.1.1",
"@stripe/stripe-js": "^1.12.1",
"@tailwindcss/postcss7-compat": "^2.0.3",
"autoprefixer": "^9",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"postcss": "^7",
"react-router-dom": "^5.2.0",
"stripe": "^8.131.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"use-shopping-cart": "^2.4.2"
},
"license": "MIT",
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
}
}