-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"static": "next export",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"icons": "npx @svgr/cli --svgo-config ./svgo.config.js --no-dimensions -d src/components/Icons/ ./icons/",
"prettier": "prettier --write ./src",
"lint:js": "next lint src/ --fix",
"lint:css": "stylelint --fix src/**/*.scss"
},
"dependencies": {
"@builder.io/react": "^2.0.5",
"@sendgrid/mail": "^7.7.0",
"@vercel/fetch": "^6.2.0",
"classnames": "^2.3.1",
"next": "latest",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"zod": "^3.19.1",
"zod-validation-error": "^0.2.1"
},
"devDependencies": {
"@svgr/cli": "^6.3.1",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/react": "18.0.9",
"eslint": "^8.23.0",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.6.3",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"sort-css-media-queries": "^2.1.0",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"typescript": "4.6.4"
}
}