forked from jacob-ebey/remix-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.76 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
{
"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:remix": "remix setup node"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@netlify/functions": "^0.10.0",
"@reach/auto-id": "^0.16.0",
"@remix-run/netlify": "^1.1.1",
"@remix-run/node": "^1.1.1",
"@remix-run/react": "^1.1.1",
"@remix-run/serve": "^1.1.1",
"classnames": "^2.3.1",
"decimal.js": "^10.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1"
},
"devDependencies": {
"@remix-run/dev": "^1.1.1",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"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": {}
}