-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "coinmerce-assignment",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "cross-env NODE_ENV=development remix dev --manual",
"dev:auto": "remix dev",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"download-images": "node ./scripts/download_coin_images.cjs"
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.15",
"@fontsource-variable/raleway": "^5.0.16",
"@lottiefiles/lottie-player": "^2.0.2",
"@react-spring/rafz": "^9.7.3",
"@react-spring/web": "^9.7.3",
"@remix-run/css-bundle": "^2.1.0",
"@remix-run/node": "^2.1.0",
"@remix-run/react": "^2.1.0",
"@remix-run/serve": "^2.1.0",
"@vercel/analytics": "^1.1.1",
"@vercel/remix": "^2.1.0",
"axios": "^1.6.0",
"isbot": "^3.7.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.take": "^4.1.1",
"lottie-react": "^2.4.0",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@remix-run/dev": "^2.1.0",
"@remix-run/eslint-config": "^2.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.6",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.take": "^4.1.7",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18.18.0"
}
}