-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -o ./app/styles/tailwind.css",
"dev": "concurrently \"yarn dev:css\" \"node -r dotenv/config node_modules/.bin/remix dev\"",
"dev:css": "tailwindcss -o ./app/styles/tailwind.css --watch",
"postinstall": "remix setup node",
"lint": "eslint 'app/**/*.ts?(x)'",
"lintFix": "eslint 'app/**/*.ts?(x)' --fix",
"format": "prettier --write \"app/**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@remix-run/react": "^1.0.6",
"@remix-run/serve": "^1.0.6",
"@remix-run/vercel": "^1.0.6",
"base-64": "^1.0.0",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loader-spinner": "^4.0.0",
"react-router-dom": "^6.0.2",
"react-toastify": "^8.1.0",
"recoil": "^0.5.2",
"remix": "^1.0.6",
"remix-auth": "^2.5.0-0",
"spotify-web-api-node": "^5.0.2",
"tailwind-scrollbar-hide": "^1.1.6",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@remix-run/dev": "^1.0.6",
"@types/base-64": "^1.0.0",
"@types/lodash": "^4.14.177",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/request": "^2.48.7",
"@types/spotify-web-api-node": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"concurrently": "^6.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}