This repository was archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 5.18 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 5.18 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "next-tinynewsdemo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test": "ORG_SLUG=oaklyn-test NEXT_PUBLIC_CYPRESS_TESTING=true CYPRESS_API_TOKEN=$API_TOKEN HASURA_API_URL=http://localhost:8080/v1/graphql next dev",
"local:test": "ORG_SLUG=oaklyn-test NEXT_PUBLIC_CYPRESS_TESTING=true CYPRESS_API_TOKEN=$API_TOKEN HASURA_API_URL=https://heroic-snapper-25.hasura.app/v1/graphql next dev",
"seed": "ORG_SLUG=oaklyn-test SITE=next-tinynewsdemo NEXT_PUBLIC_CYPRESS_TESTING=true CYPRESS_API_TOKEN=$API_TOKEN HASURA_API_URL=http://localhost:8080/v1/graphql NODE_ENV=test node script/seed.js",
"build:test": "HASURA_API_URL=http://localhost:8080/v1/graphql ORG_SLUG=oaklyn-test SITE=next-tinynewsdemo NEXT_PUBLIC_CYPRESS_TESTING=true CYPRESS_API_TOKEN=$API_TOKEN BUILD_MODE=test next build",
"start:test": "HASURA_API_URL=http://localhost:8080/v1/graphql ORG_SLUG=oaklyn-test SITE=next-tinynewsdemo NEXT_PUBLIC_CYPRESS_TESTING=true CYPRESS_API_TOKEN=$API_TOKEN BUILD_MODE=test next start",
"start": "next start",
"clear": "node script/clear.js",
"populate": "node script/populate.js",
"wordpress": "node script/wordpress.js",
"data:clear": "node script/clear-analytics.js",
"status": "node script/status.js",
"remove:org": "node script/remove.js",
"test": "jest",
"build": "NODE_OPTIONS='--trace-warnings' next build",
"cy:run": "cypress run",
"cypress:open": "NEXT_PUBLIC_CYPRESS_TESTING=true cypress open",
"cypress:api": "npm run cy:run -- --env CYPRESS_API_TOKEN=$CYPRESS_API_TOKEN --spec 'cypress/integration/documents_api_lookup_spec.js'",
"build:rss": "node script/generate-rss.js",
"build:newsletters": "node script/build-newsletter-editions.js",
"prebuild": "node script/build-newsletter-editions.js",
"export": "next build && next export",
"lint": "eslint ./components/** ./pages/** ./lib/** -c .eslintrc.json --fix --ext js,jsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write ./components/** ./pages/** ./lib/**"
},
"babelMacros": {
"twin": {
"config": "./tailwind.config.js",
"preset": "styled-components"
}
},
"lint-staged": {
"./components/**": "npm run format",
"./pages/**": "npm run format",
"./lib/**": "npm run format",
"./styles/**": "npm run format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@actions/core": "^1.3.0",
"@babel/runtime": "^7.13.10",
"@fullhuman/postcss-purgecss": "^3.1.3",
"@heroicons/react": "^1.0.1",
"@octokit/rest": "^18.5.3",
"@tailwindcss/forms": "^0.3.2",
"@tinymce/tinymce-react": "^3.12.6",
"aws-sdk": "^2.1046.0",
"commander": "^7.1.0",
"cookie": "^0.3.1",
"date-fns": "^2.14.0",
"date-fns-tz": "^1.1.6",
"fetch-cookie": "^0.10.1",
"formik": "^2.1.4",
"googleapis": "^67.1.1",
"gray-matter": "^4.0.3",
"image-size": "^1.0.1",
"image-type": "^4.1.0",
"journalize": "^2.4.0",
"js-yaml": "^4.1.0",
"local-storage-fallback": "^4.1.1",
"moment": "^2.29.2",
"next": "^12.1.5",
"next-auth": "4.12.2",
"next-seo": "^5.3.0",
"node-fetch": "^2.6.7",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"purgecss": "^2.3.0",
"react": "^17.0.2",
"react-aws-s3": "^1.5.0",
"react-beautiful-dnd": "^13.1.0",
"react-cookie-consent": "^6.4.1",
"react-currency-input-field": "^3.6.0",
"react-datepicker": "^4.7.0",
"react-dom": "^17.0.2",
"react-ga": "^3.1.2",
"react-ga4": "^2.1.0",
"react-instagram-embed": "^2.0.1",
"react-intersection-observer": "^8.27.1",
"react-player": "^2.5.0",
"react-scroll-percentage": "^4.2.0",
"react-tweet-embed": "^2.0.0",
"recharts": "^2.0.9",
"remark": "^14.0.1",
"remark-html": "^15.0.0",
"rss": "^1.2.2",
"styled-components": "^5.2.3",
"swr": "^0.5.6",
"tweetsodium": "^0.0.5",
"uuid": "^8.3.2",
"wxr-generator": "^0.2.0",
"yn": "^5.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.3",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-styled-components": "^1.13.3",
"cypress": "^11.1.0",
"cypress-dotenv": "^2.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.4.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"faker": "^5.5.3",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^10.2.11",
"log-update": "^5.0.0",
"next-sitemap": "^1.5.10",
"postcss": "^8.2.10",
"prettier": "2.0.5",
"react-is": "^17.0.2",
"rxjs": "^7.5.5",
"slice-ansi": "^5.0.0",
"tailwindcss": "^2.1.1",
"twin.macro": "^2.3.2"
}
}