-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
176 lines (176 loc) Β· 5.64 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
{
"name": "book-builder",
"version": "1.0.0",
"license": "MIT",
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "git@github.com:blackboardd/book-builder.git"
},
"author": "blackboardd <86866786+blackboardd@users.noreply.github.com>",
"files": [
"dist/**/*"
],
"bugs": {
"url": "https://github.com/blackboardd/book-builder/issues"
},
"homepage": "https://github.com/blackboardd/book-builder#readme",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "yarn build:vite && yarn build:typescript && yarn build:storybook && yarn build:dictionary",
"build:vite": "vite build",
"build:dictionary": "style-dictionary build",
"build:storybook": "build-storybook -s public -o dist/storybook",
"build:tsc": "tsc",
"format": "yarn prettier -- --write && yarn lint",
"format:lint": "eslint --fix --ext .js,.ts,.tsx ./src --ignore-path .gitignore",
"format:prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"check": "yarn check:tsc && yarn check:format",
"check:tsc": "tsc --pretty --noEmit",
"check:format": "yarn prettier -- --list-different",
"semantic-release": "semantic-release",
"start": "yarn start:vite && yarn start:storybook && start:tsnode",
"start:vite": "vite preview",
"start:tsnode": "ts-node ./src/server/index.ts",
"start:storybook": "start-storybook -p 6006",
"test": "yarn test:jest && yarn test:cypress",
"test:jest": "jest",
"test:cypress": "cypress run"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.1",
"@reduxjs/toolkit": "^1.6.1",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@storybook/addon-actions": "^6.3.10",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-links": "^6.3.10",
"@storybook/react": "^6.3.10",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.3.0",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"body-parser": "^1.19.0",
"commitizen": "^4.2.4",
"core-js": "^3.18.2",
"css-loader": "^6.4.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^4.0.0",
"esbuild-register": "^3.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"express-pino-logger": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"mini-css-extract-plugin": "^2.4.2",
"msw": "^0.35.0",
"nanoid": "^3.1.29",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-error-boundary": "^3.1.3",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.17.2",
"react-query": "^3.26.0",
"react-query-auth": "^1.1.0",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"shelljs": "^0.8.4",
"storybook": "^6.3.10",
"style-dictionary": "^3.0.2",
"style-loader": "^3.3.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"type-fest": "^2.3.4",
"typescript": "^4.4.3",
"vite": "^2.5.10",
"web-vitals": "^2.1.1"
},
"dependencies": {
"@lottiefiles/react-lottie-player": "^3.4.1",
"@mdx-js/react": "^1.6.22",
"@react-three/drei": "^7.12.5",
"@react-three/fiber": "^7.0.7",
"@sentry/node": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@storybook/node-logger": "^6.3.10",
"@storybook/preset-create-react-app": "^4.0.0",
"@types/react": "^17.0.27",
"@types/react-helmet": "^6.1.3",
"@types/react-router-dom": "^5.3.1",
"@types/three": "^0.133.0",
"axios": "^0.22.0",
"esbuild": "^0.13.4",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-testing-library": "^4.12.4",
"jsonwebtoken": "^8.5.1",
"polished": "^4.1.3",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"styled-components": "^5.3.1",
"three": "^0.133.0",
"vite-plugin-ssr": "^0.3.1",
"vite-tsconfig-paths": "^3.3.14",
"zod": "^3.9.8"
},
"husky": {
"hooks": {
"prepare": "husky install",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"lint-staged": {
"*.+(ts|tsx)": [
"yarn lint"
]
}
}