-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"private": true,
"scripts": {
"build": "next build",
"build:gh-pages": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll",
"dev": "next",
"export": "next export",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"generate:icon-metadata": "node ./scripts/generate-new-icon-metadata.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "next",
"next:start": "next start"
},
"dependencies": {
"@lifeomic/chromicons": "^3.7.1",
"@reach/alert": "^0.11.2",
"@reach/dialog": "^0.11.2",
"@tailwindui/react": "^0.1.1",
"autoprefixer": "^10.2.5",
"clsx": "^1.1.1",
"focus-visible": "^5.1.0",
"next": "^12.1.0",
"postcss": "^8.4.31",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"babel-plugin-transform-define": "^2.0.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.1.0",
"json5": "^2.2.2",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-focus-visible": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.1",
"tailwindcss": "^2.1.4"
}
}