-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.65 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.65 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
77
{
"name": "interlinked",
"version": "0.1.0",
"private": true,
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --ignore-path .gitignore"
},
"scripts": {
"dev": "next dev",
"dev:instrumented": "rm -rf .next && env INSTRUMENT_CODE=1 firebase emulators:exec 'next dev' --import=firebase_exports",
"build:instrumented": "rm -rf .next && env INSTRUMENT_CODE=1 firebase emulators:exec 'next build' --import=firebase_exports",
"build": "next build",
"start": "next start",
"start:instrumented": "env INSTRUMENT_CODE=1 firebase emulators:exec 'next start' --import=firebase_exports --ui",
"emulator:start": "firebase emulators:start --import=firebase_exports",
"emulator:export": "firebase emulators:export ./firebase_exports",
"lint": "next lint",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"cy:open": "cypress open",
"cy:coverage": "rm -rf .nyc_output coverage && cypress run --spec cypress/e2e/all.cy.js && npx nyc report --reporter=text-summary",
"prepare": "husky install"
},
"dependencies": {
"@codemirror/commands": "^6.2.2",
"@codemirror/lang-markdown": "^6.1.0",
"@codemirror/language-data": "^6.2.0",
"@codemirror/state": "^6.2.0",
"@codemirror/theme-one-dark": "^6.1.1",
"@codemirror/view": "^6.9.3",
"@headlessui/react": "1.7.8",
"@next/font": "13.1.6",
"@react-spring/web": "^9.6.1",
"@use-gesture/react": "^10.2.24",
"codemirror": "^6.0.1",
"crypto": "^1.0.1",
"encoding": "^0.1.13",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"firebase": "^9.17.2",
"md5": "^2.3.0",
"next": "13.1.6",
"next-intl": "2.12.0",
"protobufjs": "^7.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.6",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/md5": "^2.3.2",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-icons": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^12.7.0",
"cypress-file-upload": "^5.0.8",
"husky": "^8.0.3",
"intersection-observer": "^0.12.2",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.2.4",
"typescript": "4.9.5"
}
}