-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "mlb2020",
"version": "0.1.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"deploy": "yarn build && firebase deploy",
"build": "yarn build:functions && yarn build:front",
"build:front": "yarn workspace front next build && yarn workspace front next export && node scripts/useNextRewritesInFirebase.js",
"build:functions": "yarn workspace functions run build",
"dev": "yarn workspace front next",
"start": "concurrently \"yarn dev\" \"yarn emulators\"",
"export": "yarn workspace front next export",
"emulators": "firebase emulators:start",
"emulatorsProd": "firebase emulators:start",
"test": "APP_ENV=yarn jest --config=jest.unit.config.js",
"test:integration": "jest --runInBand --config=jest.integration.config.js"
},
"resolutions": {
"webpack": "^5.11.1"
},
"dependencies": {
"dotenv": "^8.2.0",
"object.omit": "^3.0.0",
"object.pick": "^1.3.0",
"typescript": "^4.1.2"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^1.1.4",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.5.0",
"@types/expect-puppeteer": "^4.4.5",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/node": "14",
"@types/object.omit": "^3.0.0",
"@types/object.pick": "^1.3.0",
"@types/puppeteer": "^5.4.2",
"babel-plugin-import": "^1.13.3",
"concurrently": "^5.3.0",
"cross-blob": "^2.0.0",
"delay": "^4.4.0",
"esbuild": "^0.8.31",
"expect-puppeteer": "^4.4.0",
"is-in-browser": "^1.1.3",
"jest": "^26.6.3",
"jest-matchmedia-mock": "^1.1.0",
"p-wait-for": "^3.1.0",
"pptr-testing-library": "^0.6.4",
"prettier": "^2.2.1",
"puppeteer": "5.4",
"wait-for-expect": "^3.0.2"
}
}