-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
79 lines (79 loc) · 2.79 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
{
"name": "qr-kiosk-poap",
"version": "0.1.1",
"private": true,
"dependencies": {
"@heroicons/react": "^2.0.18",
"@poap/poap-components": "^0.1.21",
"@poap/sane-data": "^0.0.7",
"@rive-app/react-canvas": "^4.6.2",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^11.2.0",
"firebase": "^10.7.1",
"formik": "^2.4.5",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.4.2",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-google-recaptcha": "^2.1.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.3.1",
"react-modal": "^3.16.1",
"react-particles": "^2.12.2",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.21.0",
"sass": "^1.69.5",
"styled-components": "^5.3.11",
"tsparticles": "^2.12.0",
"use-interval": "^1.4.0",
"uuid": "^9.0.1",
"vite": "^4.5.1",
"vite-plugin-svgr": "^3.3.0",
"yup": "^1.3.3"
},
"scripts": {
"start": "vite --host",
"build": "vite build",
"cypress": "NODE_ENV=development cypress open --e2e --browser chrome",
"test": "CYPRESS_LOCAL=true NODE_ENV=development start-server-and-test --expect 200 'BROWSER=none npm start' 3000 \"cypress run --browser chrome\"",
"test:production": "npm run build && NODE_ENV=production start-server-and-test --expect 200 'serve build' 3000 \"cypress open --browser chrome\"",
"test:ci": "NODE_ENV=production CI=true start-server-and-test --expect 200 start 3000 'npm run test:parallel'",
"test:parallel": "cypress-cloud run --browser chrome --parallel --record",
"test:ci:with_emulator": "NODE_ENV=production CI=true start-server-and-test 'npm start' 3000 'cd functions && npm run serve' 4000 'npm run test:parallel'",
"lint": "eslint --fix src ",
"prepare": "husky install",
"upgrade": "ncu && read -p 'Press enter to upgrade above packages' && ncu -u && read -p 'Press enter to install new versions...' && npm i && npm outdated "
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@cypress/webpack-preprocessor": "^6.0.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@poap/skunk-linter": "^0.0.3",
"core-js": "^3.34.0",
"cypress-cloud": "^1.9.6",
"cypress-fail-fast": "^7.1.0",
"cypress-file-upload": "^5.0.8",
"dotenv": "^16.3.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"serve": "^14.2.1",
"start-server-and-test": "^1.15.4"
}
}