-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
102 lines (102 loc) · 3.75 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
95
96
97
98
99
100
101
102
{
"name": "coindrop.to",
"version": "1.0.0",
"license": "GPL-3.0-only",
"scripts": {
"dev:local": "yarn run expose:blog:content && yarn run expose:page:slugs && cross-env NODE_OPTIONS='--inspect' ./node_modules/.bin/next dev",
"dev:vercel": "yarn run expose:blog:content && yarn run expose:page:slugs && yarn vercel env pull .env.local && yarn next dev",
"expose:blog:content": "node ./src/lib/blog/generate-static-files.js",
"expose:page:slugs": "node ./utils/build/page-slugs.js",
"generate:static:files": "node ./src/embed-button/generate.js && yarn run expose:blog:content && yarn run expose:page:slugs",
"build": "yarn run generate:static:files && next build",
"start": "next start",
"lint": "./node_modules/.bin/eslint ./ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "./node_modules/.bin/eslint ./ --ext .js,.jsx,.ts,.tsx --fix",
"lint:tsc": "./node_modules/.bin/tsc",
"lint:tsc:cypress": "./node_modules/.bin/tsc --project cypress/tsconfig.json",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:gentestid": "node cypress/generate-test-id.js",
"test:local": "jest --watch",
"test": "jest",
"test:firestore:rules": "firebase emulators:exec --project coindropto-dev \"npx jest --env=node --runTestsByPath src/firebase/firestore/__tests/firestore-rules.test.ts --testPathIgnorePatterns=[]\"",
"cleaninstall": "rm -rf ./node_modules && yarn",
"vercel:dev:pull-env": "vercel pull --environment=development"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@chakra-ui/icons": "^1.0.3",
"@chakra-ui/react": "^2.2.8",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@google-cloud/firestore": "^4.2.0",
"@google-cloud/storage": "^5.7.2",
"@next/bundle-analyzer": "^10.0.5",
"@types/chai": "^4.2.14",
"aws-sdk": "^2.828.0",
"axios": "^0.27.2",
"cryptr": "^6.0.2",
"dayjs": "^1.10.3",
"dotenv": "^16.0.3",
"emotion-theming": "^11.0.0",
"firebase": "^9.9.2",
"firebase-admin": "^11.0.1",
"framer-motion": "^6",
"gray-matter": "^4.0.2",
"js-cookie": "^2.2.1",
"minify": "^6.0.0",
"next": "12",
"next-connect": "^0.9.0",
"next-mdx-remote": "^2.1.1",
"next-seo": "^4.11.0",
"qrcode.react": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebaseui": "^6.0.0",
"react-hook-form": "^6.14.2",
"react-icons": "^4.1.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"sass": "^1.32.5",
"swr": "^1.3.0",
"uuid": "^8.3.0",
"validator": "^13.5.2",
"zod": "^1.11.11"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.12.10",
"@firebase/rules-unit-testing": "^1.1.8",
"@jest/globals": "^29.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.1",
"@types/js-cookie": "^2.2.6",
"@types/react": "^18.0.17",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "^29.1.2",
"cross-env": "^7.0.3",
"cypress": "^10.9.0",
"cypress-file-upload": "5.x",
"cypress-firebase": "2.2.2",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"short-unique-id": "^3.2.3",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4",
"vercel": "^28.1.0"
}
}