-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"scripts": {
"postinstall": "remix setup node",
"build": "run-s build:*",
"hot": "run-s hot:*",
"start": "cross-env NODE_ENV=production remix-serve ./build",
"hot:css": "tailwindcss -i ./app/styles/app.css -o ./app/styles/bundled.module.css",
"build:css": "tailwindcss -i ./app/styles/app.css -o ./build/styles/bundled.css --minify",
"build:remix": "remix build",
"hot:remix": "remix dev",
"eslint": "./node_modules/.bin/eslint app --quiet --ext js,ts,tsx",
"test": "jest"
},
"dependencies": {
"@remix-run/node": "^1.3.5",
"@remix-run/react": "^1.3.5",
"@remix-run/serve": "^1.3.5",
"base-64": "^1.0.0",
"cross-env": "^7.0.3",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-fs-backend": "^1.1.4",
"i18next-http-backend": "^1.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-i18next": "^11.16.7",
"remix": "^1.3.5",
"remix-i18next": "^4.0.0"
},
"devDependencies": {
"@remix-run/dev": "^1.3.5",
"@types/base-64": "^1.0.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"autoprefixer": "^10.4.4",
"cypress": "^9.7.0",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "2.6.2",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}