-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "@ellioseven/next-firebase",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"firebase:seed": "ts-node ./scripts/seed.ts",
"test": "lerna run --stream test && yarn test:cypress",
"test:cypress": "cypress run --headless --config video=false",
"build": "yarn build:package && yarn build:app",
"build:package": "lerna run --stream build --ignore '@ellioseven/next-firebase-app' --include-dependencies",
"build:app": "lerna run --include-dependencies --stream build --scope=@ellioseven/next-firebase-app",
"prepare": "husky install"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^1.2.6",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.6",
"babel-jest": "^26.6.3",
"cypress": "^6.8.0",
"firebase-functions-test": "^0.2.0",
"firebase-tools": "^9.8.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"microbundle": "^0.13.0",
"msw": "^0.27.1",
"node-mocks-http": "^1.9.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"wait-for-expect": "^3.0.2"
}
}