-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
{
"name": "appsignal-status",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,mdx,json}'",
"format:check": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,mdx,json}'"
},
"dependencies": {
"@appsignal-tools/design-system": "^16.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@tailwindcss/typography": "^0.5.9",
"@tippyjs/react": "^4.2.5",
"autoprefixer": "^10.4.19",
"dayjs": "^1.11.11",
"mockdate": "^3.0.5",
"msw": "^0.35.0",
"next": "11.1.1",
"postcss": "^8.4.39",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.4.4",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.0.6",
"babel-plugin-directory-named": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^3.0.4",
"jest": "^27.0.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.8.4"
},
"msw": {
"workerDirectory": "public"
}
}