generated from TylerMatteo/next-chakra-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.06 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
{
"name": "equity-tool",
"private": true,
"version": "0.1.27",
"keywords": [
"boilerplate",
"nextjs",
"chakra",
"chakra-ui",
"template"
],
"description": "An interactive citywide equitable development tool for New York City, built by DCP Digital Services.",
"engines": {
"node": "18.16.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next build && next start",
"lint": "run-s lint:tsc lint:eslint",
"lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}' '*.js'",
"lint:tsc": "tsc --noEmit && tsc --noEmit --project ./cypress/tsconfig.json",
"test": "jest -c test/jest.config.js",
"e2e:open": "cypress open",
"e2e:run": "cypress run --config video=false",
"e2e:test": "start-server-and-test start http://localhost:3000 e2e:run",
"ci:test-build": "run-s lint test build e2e:test",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "^2.3.4",
"@chakra-ui/theme-tools": "^2.0.11",
"@danmarshall/deckgl-typings": "^4.9.10",
"@deck.gl/extensions": "^8.6.8",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^2.9.10",
"@netlify/plugin-nextjs": "^4.28.4",
"@react-hook/window-size": "^3.1.1",
"@sendgrid/mail": "^7.7.0",
"@sentry/nextjs": "^6.18.2",
"@types/d3-color": "^3.0.2",
"@types/d3-interpolate": "^3.0.1",
"@types/d3-scale": "^4.0.2",
"axios": "^0.26.1",
"d3-color": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"deck.gl": "^8.6.4",
"framer-motion": "^7.4.0",
"next": "^12.3.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^1.4.1",
"react-hook-form": "^7.38.0",
"react-icons": "^4.4.0",
"react-map-gl": "^6.1.17",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.1.0",
"cypress": "^8.7.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"start-server-and-test": "^1.14.0",
"typescript": "^4.8.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"bash -c 'npm run lint:tsc'",
"npm run lint:eslint -- --quiet --fix"
]
}
}