-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.63 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.63 KB
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
{
"name": "platform",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "firebase emulators:exec --only auth,firestore --ui 'NEXT_PUBLIC_APP_ENV='test' next dev'",
"build": "next build",
"start": "next start",
"start:test": "NEXT_PUBLIC_APP_ENV='test' next dev",
"start:prod": "next start -p $PORT",
"ci:lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
"ci:format": "prettier --ignore-path .gitignore -l .",
"ci:test": "firebase emulators:exec 'yarn test'",
"lint": "yarn run ci:lint --fix",
"lint-format-staged": "lint-staged",
"format": "yarn run ci:format --write",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:watch": "yarn test --watch",
"test": "FIRESTORE_EMULATOR_HOST=\"localhost:8080\" jest --testPathIgnorePatterns tests/firestore",
"test:cy": "firebase emulators:exec 'yarn start-server-and-test start:test http://localhost:3000 cy:run'",
"test:rules:watch": "firebase emulators:exec --only firestore 'jest --watch tests/firestore/rules.spec.ts --detectOpenHandles'",
"test:rules": "firebase emulators:exec --only firestore 'jest tests/firestore/rules.spec.ts --detectOpenHandles'"
},
"dependencies": {
"@chakra-ui/react": "^1.0.0",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"axios": "^0.21.0",
"firebase": "^7.0.0",
"firebase-admin": "^9.4.1",
"framer-motion": "^2.9.4",
"isomorphic-unfetch": "^3.1.0",
"luxon": "^1.25.0",
"next": "10.0.1",
"next-connect": "^0.9.1",
"qs": "^6.9.4",
"react": "^0.0.0-experimental-4ead6b530",
"react-dom": "^0.0.0-experimental-4ead6b530",
"reactfire": "^2.0.3",
"tmi.js": "^1.5.0"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^1.1.3",
"@testing-library/cypress": "^7.0.1",
"@types/faker": "^5.1.4",
"@types/jest": "^26.0.15",
"@types/luxon": "^1.25.0",
"@types/node": "^14.14.8",
"@types/qs": "^6.9.5",
"@types/react": "^16.9.56",
"@types/test-listen": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"cypress": "^6.0.0",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-simple-import-sort": "^5.0.3",
"factory.ts": "^0.5.1",
"faker": "^5.1.0",
"firebase-tools": "^8.16.2",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"nock": "^13.0.5",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.5",
"test-listen": "^1.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}