forked from jacob-ebey/remix-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.98 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
57
58
59
60
61
62
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "run-s build:css build:remix",
"build:remix": "remix build",
"build:css": "postcss styles/global.css -o app/styles/global.css",
"clean": "rimraf ./public/build ./build ./.cache/content-v2 ./.cache/index-v5",
"dev": "npm run build:css && run-p dev:*",
"dev:remix": "dotenv -- remix dev",
"dev:css": "postcss styles/global.css -o app/styles/global.css --watch",
"test": "cypress-parallel -s cy:run -t 4 -d ./cypress/integration",
"cy:run": "cypress run --config video=false",
"cypress": "cypress open",
"start": "remix-serve build",
"postinstall": "run-s setup:*",
"setup:install-sharp": "(cd ./node_modules/sharp && npm run install)",
"setup:remix": "remix setup node"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@reach/auto-id": "^0.16.0",
"@remix-run/node": "0.0.0-experimental-f218dd8b",
"@remix-run/react": "0.0.0-experimental-f218dd8b",
"@remix-run/serve": "0.0.0-experimental-f218dd8b",
"@shopify/shopify-api": "^2.0.0",
"classnames": "^2.3.1",
"decimal.js": "^10.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redis": "^4.0.1",
"remix": "0.0.0-experimental-f218dd8b",
"sharp": "^0.29.3"
},
"devDependencies": {
"@remix-run/dev": "0.0.0-experimental-f218dd8b",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/sharp": "^0.29.5",
"autoprefixer": "^10.4.0",
"cssnano": "^5.0.14",
"cypress": "^9.2.1",
"cypress-parallel": "^0.8.2",
"dotenv-cli": "^4.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-load-config": "^3.1.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.7",
"tailwindcss-named-groups": "^0.0.5",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"prettier": {}
}