-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.7 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "remix-app-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"postinstall": "remix setup cloudflare-pages && npm run env",
"build": "npm run build:css && npm run build:prod",
"build:prod": "cross-env NODE_ENV=production remix build",
"build:dev": "cross-env NODE_ENV=development remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev:remix": "node -r dotenv/config node_modules/.bin/remix watch",
"dev:wrangler": "node -r dotenv/config wrangler.js",
"dev": "npm run build:dev && concurrently \"npm run dev-css\" \"run-p dev:*\"",
"dev-css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev-wrangler": "node -r dotenv/config node_modules/.bin/cross-env NODE_ENV=development wrangler pages dev ./public",
"test": "jest",
"start": "cross-env NODE_ENV=production npm run dev:wrangler",
"prepare": "husky install",
"lint": "eslint app/**/*.tsx"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@remix-run/cloudflare-pages": "^1.2.3",
"@remix-run/react": "^1.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.2.3",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@remix-run/dev": "^1.2.3",
"@remix-run/eslint-config": "^1.2.3",
"@tailwindcss/line-clamp": "^0.3.1",
"@testing-library/react": "^12.1.3",
"@types/gapi.youtube": "^3.0.35",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.3",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.8",
"prettier": "2.5.1",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"wrangler": "beta"
},
"engines": {
"node": ">=14"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.tsx",
"!entry.*.tsx",
"!root.tsx"
],
"coverageThreshold": {
"global": {
"branches": 30,
"functions": 66,
"lines": 66
}
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/$1"
},
"preset": "ts-jest",
"rootDir": "./app",
"testEnvironment": "jest-environment-jsdom",
"testMatch": [
"**/*.test.tsx"
]
},
"lint-staged": {
"app/**/*.tsx": [
"eslint --cache --fix",
"prettier --write"
]
}
}