-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.38 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
{
"name": "remix-template-netlify",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"build": "run-s build:*",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev": "run-p dev:*",
"start": "cross-env NODE_ENV=production netlify dev",
"cy:open": "cypress open",
"cy:run": "cypress run",
"build:remix": "cross-env NODE_ENV=production remix build",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm --define:process.env.NODE_ENV='\"production\"'",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch"
},
"dependencies": {
"@metamask/providers": "^8.1.1",
"@netlify/functions": "^0.10.0",
"@remix-run/netlify": "^1.4.3",
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"bad-words": "^3.0.4",
"bcryptjs": "^2.4.3",
"body-scroll-lock": "^4.0.0-beta.0",
"chart.js": "^3.8.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.2",
"framer-motion": "^6.3.3",
"mongodb": "^4.6.0",
"nodemailer": "^6.7.5",
"react": "^17.0.2",
"react-chartjs-2": "^4.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"stripe": "^9.8.0",
"tiny-invariant": "^1.2.0",
"typo-js": "^1.2.1",
"wink-lemmatizer": "^3.0.2",
"node-persist": "^3.1.0",
"web-push": "^3.4.5",
"npm-run-all": "^4.1.5",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@remix-run/eslint-config": "^1.4.3",
"@types/bad-words": "^3.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/body-scroll-lock": "^3.1.0",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/react-google-recaptcha": "^2.1.5",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.0",
"cypress": "^10.1.0",
"eslint": "^8.15.0",
"netlify-plugin-cypress": "^2.2.0",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"@types/node-persist": "^3.1.2"
},
"engines": {
"node": ">=14"
}
}