-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "remix-app-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && cross-env NODE_ENV=production remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"PORT=1986 cross-env NODE_ENV=development remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet",
"postinstall": "remix setup node",
"test": "jest"
},
"dependencies": {
"@remix-run/react": "^1.2.3",
"@remix-run/vercel": "^1.2.3",
"@vercel/analytics": "^1.0.0",
"classnames": "^2.3.1",
"country-code-info": "^0.3.0",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"nprogress": "^0.2.0",
"pluralize": "^8.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remeda": "^0.0.32",
"remix": "^1.2.3",
"runtypes": "^6.5.1",
"slugify": "^1.6.5",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@remix-run/dev": "^1.2.3",
"@remix-run/eslint-config": "^1.2.3",
"@remix-run/serve": "^1.2.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.memoize": "^4.1.6",
"@types/node": "^17.0.21",
"@types/nprogress": "^0.2.0",
"@types/pluralize": "^0.0.29",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.4",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"json-stringify-pretty-compact": "^3.0.0",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.1.3",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"workspaces": [
"cli"
]
}