-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "new-wave-stack-template",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"build:css": "postcss styles --base styles --dir app/styles --env production",
"build:remix": "remix build",
"dev": "run-p dev:*",
"css:watch": "npm run build:css -- --w",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve build",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"typecheck": "tsc -b"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"@remix-run/server-runtime": "*",
"bcryptjs": "^2.4.3",
"isbot": "^3.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rc-collapse": "^3.3.1",
"recharts": "2.1.12",
"sharp": "0.30.7",
"swiper": "8.3.2",
"@tailwindcss/typography": "^0.5.4",
"tailwind-merge": "^1.5.1",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@types/eslint": "^8.4.5",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.7",
"binode": "^1.0.5",
"c8": "^7.11.3",
"cross-env": "^7.0.3",
"esbuild-register": "^3.3.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^6.0.3",
"msw": "^0.49.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-cli": "^10.0.0",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.12",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.6",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}