-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "tara-daily",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"yarn dev:lib\" \"yarn dev:firestore\" \"yarn next dev\"",
"dev:firestore": "firebase emulators:start --only firestore,ui --project demo-read-write",
"dev:lib": "yarn --cwd ../.. watch:dev",
"build": "next build",
"start": "yarn dev",
"lint": "next lint",
"test": "jest --watch",
"storybook": "concurrently --kill-others \"yarn dev:firestore\" \"yarn start-storybook -s ./public -p 6006\"",
"postinstall": "yarn --cwd ../.. install && next build"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.0",
"@remirror/pm": "^1.0.14",
"@remirror/react": "^1.0.28",
"fibers": "^5.0.1",
"firebase": "^9.6.9",
"next": "^12.1.0",
"node-sass": "^7.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"react-redux-firebase": "^3.11.0",
"read-write": "../../es",
"remirror": "^1.0.71",
"sass": "^1.49.9"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/node": "17.0.22",
"@types/react": "17.0.41",
"babel-loader": "^8.2.4",
"concurrently": "^7.0.0",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"firebase-tools": "^10.4.1",
"jest": "^27.5.1",
"redux-mock-store": "^1.5.4",
"typescript": "4.6.2"
}
}