-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.87 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
104
105
106
107
108
109
110
111
112
113
{
"name": "timeline",
"version": "3.2.3",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"export": "NODE_ENV=production next build && next export",
"test": "npm run lint",
"lint": "npm run lint:css && npm run lint:ts && npm run lint:types",
"lint-prod": "NODE_ENV=production npm run lint",
"lint:css": "stylelint '**/*.tsx'",
"lint:ts": "eslint . --ext .ts,.tsx",
"lint:ts-fix": "eslint . --ext .ts,.tsx --fix",
"lint:types": "tsc --noEmit",
"generate:types-contentful": "graphql-codegen --config codegen.yml -r dotenv-flow/config",
"generate:favicons": "real-favicon generate faviconDescription.json faviconData.json public/assets/images/favicons",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "build-storybook --loglevel warn",
"snapshot": "npm run build-storybook && percy storybook -c .percyrc ./storybook-static",
"analyze": "cross-env ANALYZE=true next build",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect && .husky/install.sh"
},
"keywords": [],
"repository": "github:schoenwaldnils/timeline",
"author": {
"name": "Nils Schönwald",
"email": "nils@schoen.world"
},
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.5",
"@contentful/rich-text-react-renderer": "^15.12.1",
"@contentful/rich-text-types": "^15.12.1",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@material-ui/core": "^4.12.4",
"@storybook/addon-actions": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@svgr/webpack": "^6.2.1",
"@types/node": "^18.0.0",
"accept-language": "^3.0.18",
"algoliasearch": "^4.13.1",
"array-sort": "^1.0.0",
"color": "^4.2.3",
"contentful": "^9.1.32",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"eslint-import-resolver-typescript": "^2.7.1",
"graphql": "^15.5.0",
"graphql-hooks-memcache": "^2.3.1",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.12.5",
"html-react-parser": "^2.0.0",
"lodash": "^4.17.21",
"next": "^12.1.7-canary.5",
"next-i18next": "^11.0.0",
"next-pwa": "^5.5.4",
"qs": "^6.10.5",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-highlight-words": "^0.18.0",
"react-icons": "^4.4.0",
"react-instantsearch-dom": "^6.29.0",
"react-instantsearch-hooks": "^6.29.0",
"react-merge-refs": "^2.0.0",
"react-query": "^2.26.4",
"react-swipeable": "^7.0.0",
"shallowequal": "^1.1.0",
"snyk": "^1.956.0",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"use-http": "^1.0.20"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "^1.22.0",
"@next/bundle-analyzer": "^12.1.6",
"@next/eslint-plugin-next": "^12.1.6",
"@percy/cli": "^1.3.1",
"@percy/storybook": "^4.2.1",
"@schoenwald/eslint-config-typescript": "^5.0.0",
"@storybook/react": "^6.5.9",
"@types/color": "^3.0.3",
"@types/cookie": "^0.5.1",
"@types/react": "^18.0.14",
"@types/react-instantsearch-dom": "^6.12.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"cli-real-favicon": "^0.0.8",
"eslint": "^8.18.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"storybook-react-i18next": "^1.1.2",
"stylelint": "^14.9.1",
"stylelint-config-schoenwaldnils": "^4.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"tsconfig-paths-webpack-plugin": "^3.5.2"
},
"snyk": true
}