-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.19 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
{
"name": "design.sparkpost.com",
"version": "0.0.1",
"description": "SparkPost Design Documentation Site",
"scripts": {
"dev": "next",
"build": "next build",
"build:ci": "npm ci && npm run build",
"deploy:sanity": "cd studio && npm ci && npm run deploy",
"husky:install": "husky install",
"precommit": "lint-staged",
"start": "concurrently 'npm:dev' 'npm:start:sanity'",
"start:site": "next start",
"start:sanity": "cd studio && sanity start",
"format": "prettier --write '**/*.{js,ts,tsx}'",
"lint": "eslint .",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"lint-staged": {
"**/*.{tsx,ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/design.sparkpost.com.git"
},
"author": "SparkPost",
"license": "MIT",
"bugs": {
"url": "https://github.com/SparkPost/design.sparkpost.com/issues"
},
"homepage": "design.sparkpost.com",
"dependencies": {
"@sanity/client": "^2.8.0",
"@sparkpost/design-tokens": "^7.1.0",
"@sparkpost/matchbox": "^7.2.0",
"@sparkpost/matchbox-css": "^7.0.1",
"@sparkpost/matchbox-icons": "^7.1.4",
"@sparkpost/matchbox-media": "^7.0.1",
"@styled-system/css": "^5.1.5",
"algoliasearch": "^4.9.1",
"color": "^3.1.3",
"date-fns": "^2.22.1",
"eslint-import-resolver-typescript": "^2.4.0",
"groq": "^2.2.6",
"next": "^11.1.1",
"next-sanity": "^0.1.12",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-frame-component": "^5.0.0",
"react-instantsearch-dom": "^6.11.0",
"react-live": "^2.2.3",
"react-no-ssr": "^1.1.0",
"react-scrolllock": "^5.0.1",
"react-syntax-highlighter": "^15.4.3",
"sanity-algolia": "^1.0.2",
"styled-components": "^5.3.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@asbjorn/eslint-plugin-groq": "^1.0.0",
"@babel/core": "^7.15.0",
"@sanity/image-url": "^0.140.22",
"@types/node": "^14.14.44",
"@types/react": "^17.0.5",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-preset-next": "^1.4.0",
"codemirror": "^6.0.1",
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"framer-motion": "^4.1.15",
"husky": "^6.0.0",
"immer": "^9.0.6",
"is-svg": "^4.3.1",
"lint-staged": "^10.5.4",
"mem": "^4.3.0",
"react-day-picker": "^7.4.10",
"to-string-loader": "^1.2.0",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"yargs-parser": "^13.1.2"
}
}