-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.64 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.64 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "change-flow",
"version": "1.0.0",
"main": "index.js",
"packageManager": "yarn@3.5.1",
"scripts": {
"lint": "eslint \"**/*.{ts,tsx,js}\"",
"test": "jest",
"msw-init": "yarn dlx msw init public/",
"start": "yarn next start -p $PORT",
"dev": "yarn next dev",
"build": "yarn next build",
"heroku-postbuild": "yarn run build",
"cypress": "cypress open"
},
"engines": {
"node": "19.4.0",
"yarn": "3.5.1"
},
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@jdesignlab/react": "^0.12.1",
"@jdesignlab/react-icons": "^0.7.0",
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.1.0",
"@toast-ui/react-editor": "^3.2.3",
"@xstate/react": "^3.2.2",
"axios": "^1.4.0",
"date-fns": "^2.30.0",
"firebase": "^9.22.0",
"firebase-admin": "^11.9.0",
"jest-environment-jsdom": "^29.5.0",
"next": "12.3.4",
"next-auth": "^4.22.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.9",
"react-hook-form": "^7.43.9",
"react-intersection-observer": "^9.5.2",
"react-query": "^3.39.3",
"victory": "^36.6.11",
"xstate": "^4.37.2"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-typescript": "^7.22.5",
"@emotion/babel-plugin": "^11.10.8",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@next/eslint-plugin-next": "^13.4.5",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"babel-loader": "^9.1.2",
"babel-plugin-transform-remove-imports": "^1.7.0",
"bluebird": "^3.7.2",
"cypress": "^12.12.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-hooks": "^0.4.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-preview": "^0.3.1",
"msw": "^1.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"msw": {
"workerDirectory": "public"
}
}