-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
103 lines (103 loc) · 3.29 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
{
"name": "support-docs",
"version": "0.1.0",
"private": true,
"engines": {
"node": "=16.12.0"
},
"scripts": {
"predev": "npm run build:images",
"prebuild": "npm run build:images",
"prebuild:test": "npm run build:images",
"dev": "next dev",
"build": "next build",
"build:ssr": "next build && next export",
"build:index:analyst": "node ./scripts/analystIndex.mjs",
"build:index:momentum": "node ./scripts/momentumIndex.mjs",
"build:index:support": "node ./scripts/supportIndex.mjs",
"build:images": "rimraf public/content && node ./scripts/copyImages.mjs",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"precommit": "lint-staged",
"test": "npm run build:test && npm run test:e2e:headless",
"build:test": "ENV=test next build",
"test:ci": "start-server-and-test http://localhost:3000 test:e2e:headless",
"test:e2e:headless": "ENV=test node_modules/.bin/cypress run",
"test:e2e:gui": "ENV=test node_modules/.bin/cypress open"
},
"lint-staged": {
"**/*.{tsx,ts,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@segment/snippet": "^4.15.3",
"@sentry/react": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@sentry/webpack-plugin": "^1.18.2",
"@sparkpost/design-tokens": "^6.1.0",
"@sparkpost/matchbox": "^6.1.0",
"@sparkpost/matchbox-icons": "^6.1.0",
"@styled-system/css": "^5.1.5",
"@types/uuid": "^8.3.1",
"framer-motion": "^5.2.1",
"glob": "^7.2.0",
"gray-matter": "^4.0.3",
"isbot": "^3.3.4",
"js-cookie": "^3.0.1",
"next": "^12.1.0",
"react": "^17.0.2",
"react-day-picker": "^7.4.10",
"react-dom": "^17.0.2",
"react-instantsearch-dom": "^6.15.0",
"react-markdown": "^7.0.1",
"react-syntax-highlighter": "^15.4.4",
"rehype-raw": "^6.1.0",
"remark": "^14.0.1",
"remark-code-blocks": "^2.0.1",
"remark-gfm": "^3.0.0",
"remark-html": "^15.0.0",
"styled-components": "^5.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.26.0",
"@sentry/types": "^6.13.3",
"@types/glob": "^7.2.0",
"@types/gtag.js": "^0.0.7",
"@types/js-cookie": "^3.0.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
"@types/react-instantsearch-dom": "^6.12.0",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/styled-components": "^5.1.15",
"@types/styled-system": "^5.1.13",
"@types/styled-system__css": "^5.0.16",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"algoliasearch": "^4.11.0",
"cypress": "^9.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^6.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"next-sitemap": "^1.6.192",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"start-server-and-test": "^1.14.0",
"strip-markdown": "^5.0.0",
"typescript": "4.4.4",
"yaml-loader": "^0.6.0"
}
}