-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.91 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
{
"name": "box-tracker",
"version": "2.0.0",
"private": true,
"author": {
"name": "Alexander (Foxy) Foxleigh",
"email": "[email protected]",
"url": "http://github.com/foxleigh81"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"postinstall": "husky install",
"preflight": "run-p lint prettier-write",
"pretty-quick": "pretty-quick",
"genreg": "node ./file-generators/registries.mjs",
"builda": "builda",
"postbuilda": "yarn genreg"
},
"dependencies": {
"@fontsource/archivo": "^4.5.7",
"@react-hook/resize-observer": "^1.2.6",
"camelcase": "^7.0.0",
"classnames": "^2.3.1",
"dotenv": "^16.0.1",
"firebase": "^9.9.1",
"formik": "^2.2.9",
"full-icu": "^1.4.0",
"husky": "^8.0.1",
"improved-yarn-audit": "^3.0.0",
"jest": "^28.1.3",
"jest-html-reporter": "^3.6.0",
"lint-staged": "^13.0.3",
"markdown-loader": "^8.0.0",
"markdownlint-cli": "^0.32.1",
"mini-css-extract-plugin": "^2.6.1",
"next": "12.2.3",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.4",
"next-secure-headers": "^2.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"pretty-quick": "^3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-image-crop": "^10.0.4",
"react-transition-group": "^4.4.2",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@next/eslint-plugin-next": "^12.2.3",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.3.0",
"@types/node": "18.6.1",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"babel-plugin-named-exports-order": "^0.0.2",
"builda": "https://github.com/userspace-apps/builda.git",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-output": "^3.0.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-storybook": "^0.6.1",
"markdownlint": "^0.26.1",
"prettier": "^2.7.1",
"pretty": "^2.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^28.0.7",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.7.4",
"webpack": "^5.74.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn lint:ts"
],
"*.json": [
"prettier --write",
"yarn lint:json"
],
"*.{scss,css}": [
"prettier --write",
"yarn lint:styles"
],
"*.md": [
"prettier --write",
"yarn lint:md"
]
},
"resolutions": {
"glob-parent": "^5.1.2",
"trim": "^0.0.3",
"trim-newlines": "^3.0.1"
}
}