forked from cncf/landscapeapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
177 lines (177 loc) · 6.77 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "interactive-landscape",
"version": "1.0.635",
"description": "Visualization tool for building interactive landscapes",
"engines": {
"npm": ">=3",
"node": ">= 10.5"
},
"scripts": {
"autocrop-images": "babel-node tools/autocropImages",
"dev": "yarn yaml2json && yarn watch-landscape",
"open:src": "yarn dev",
"open:dist": "yarn stop-old-ci && babel-node tools/distServer.js",
"get-iframe-resizer-path": "node -e \"console.info(require.resolve('iframe-resizer/js/iframeResizer.min.js'))\" ",
"landscapes": "babel-node tools/landscapes.js",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "yarn lint -- --watch",
"update-github-colors": "curl https://raw.githubusercontent.com/Diastro/github-colors/master/github-colors.json > tools/githubColors.json",
"fetch": "babel-node tools/migrate.js && babel-node tools/validateLandscape && babel-node tools/checkWrongCharactersInFilenames && babel-node tools/addExternalInfo.js && yarn yaml2json",
"fetchAll": "LEVEL=complete yarn fetch",
"update": "(rm /tmp/landscape.json || true) && babel-node tools/migrate.js && babel-node tools/validateLandscape && yarn remove-quotes && LEVEL=medium babel-node tools/addExternalInfo.js && yarn prune && yarn check-links && yarn yaml2json && babel-node tools/calculateNumberOfTweets && babel-node tools/updateTimestamps",
"yaml2json": "babel-node tools/generateJson.js",
"remove-quotes": "babel-node tools/removeQuotes",
"prune": "babel-node tools/pruneExtraEntries",
"check-links": "babel-node tools/checkLinks",
"remove-dist": "rimraf \"$PROJECT_PATH\"/dist",
"precommit": "yarn fetch",
"host-images": "babel-node tools/hostImages.js && yarn fetch",
"start-ci": "yarn exec bash -c \"(yarn run babel-node tools/distServer.js &) && sleep 10\"",
"stop-old-ci": "yarn run babel-node tools/stopOldDistServer.js",
"stop-ci": "yarn exec bash -c \"kill -9 `cat /tmp/ci.pid` >/dev/null 2>/dev/null && rm /tmp/ci.pid \"",
"integration-test": "jest ${JEST_OPTIONS:-} --reporters=./tools/jestReporter.js --reporters=jest-standard-reporter",
"check-landscape": "babel-node tools/checkLandscape",
"render-landscape": "babel-node tools/renderLandscape",
"funding": "babel-node tools/fundingForMasterBranch",
"copy-dist": "cp -r _headers out && ([ -z \"${PROJECT_NAME:-}\" ] || mkdir \"$PROJECT_PATH\"/dist ) && cp -r out/ \"$PROJECT_PATH\"/dist/${PROJECT_NAME:-}",
"prepare-landscape": "babel-node tools/prepareLandscape.js",
"watch-landscape": "babel-node tools/watchLandscape.js",
"setup-robots": "babel-node tools/sitemap && babel-node tools/addRobots",
"quick-build": "yarn build-next && yarn setup-robots && yarn copy-dist ",
"build": "yarn fetch && yarn prepare-landscape && yarn build-next && yarn setup-robots && yarn remove-dist && yarn copy-dist && yarn export-functions && yarn stop-old-ci && yarn start-ci && babel-node tools/parallelWithRetry integration-test check-landscape render-landscape funding && yarn stop-ci",
"build-next": "next build && next export",
"export-functions": "babel-node ./tools/exportFunctions",
"show-report": "open dist/report.html",
"analyze-bundle": "babel-node ./tools/analyzeBundle.js",
"latest": "yarn",
"reset-tweet-count": "babel-node tools/resetTweetCount.js",
"prepublish": "cp yarn.lock _yarn.lock",
"postpublish": "rm _yarn.lock || true",
"preview": "yarn fetch && yarn prepare-landscape && yarn build-next"
},
"author": "CNCF",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/register": "^7.17.0",
"@babel/runtime": "^7.17.2",
"@date-io/date-fns": "^2.13.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@next/bundle-analyzer": "^12.1.0",
"@vercel/ncc": "^0.33.3",
"anchorme": "^2.1.2",
"axe-puppeteer": "^1.1.1",
"axios": "^0.26.0",
"babel-plugin-module-resolver": "^4.1.0",
"bluebird": "3.7.2",
"change-case": "^4.1.2",
"chart.js": "^3.7.1",
"chartjs-adapter-date-fns": "^2.0.0",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.5.3",
"classnames": "^2.3.1",
"colors": "1.4.0",
"compression": "^1.7.4",
"current-device": "^0.10.2",
"date-fns": "^2.28.0",
"debug": "^4.3.3",
"ejs": "^3.1.6",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.3",
"eslint-watch": "^8.0.0",
"event-emitter": "0.3.5",
"expect-puppeteer": "^6.1.0",
"express": "^4.17.3",
"extract-zip": "2.0.1",
"favicons-webpack-plugin": "^5.0.2",
"feed": "^4.2.2",
"fontsource-roboto": "^4.0.0",
"format-number": "3.0.0",
"git-branch": "2.0.1",
"iframe-resizer": "^4.3.2",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"jest-standard-reporter": "^2.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^19.0.0",
"json2csv": "^5.0.7",
"lodash": "^4.17.21",
"measure-text-width": "0.0.4",
"millify": "^4.0.0",
"next": "^12.1.0",
"node-emoji": "^1.11.0",
"oauth-1.0a": "^2.2.6",
"open": "^8.4.0",
"postcss": "^8.4.8",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"postcss-nested": "^5.0.6",
"postcss-simple-vars": "^6.0.3",
"prop-types": "^15.8.1",
"puppeteer": "^13.5.0",
"query-string": "^7.1.1",
"raf": "3.4.1",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.4",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-hot-loader": "^4.13.0",
"react-key-handler": "^1.2.0-beta.3",
"react-test-renderer": "^17.0.2",
"react-twitter-widgets": "^1.10.0",
"recompose": "0.30.0",
"relative-date": "1.1.3",
"reselect": "^4.1.5",
"rimraf": "3.0.2",
"sanitize-html": "^2.7.0",
"serve-static": "^1.14.2",
"showdown": "^2.0.3",
"sitemap": "^7.1.1",
"svg-autocrop": "^2.0.41",
"swr": "^0.5.6",
"traverse": "0.6.6",
"yarn": "^1.22.17"
},
"keywords": [
"landscape",
"interactive",
"map",
"categories",
"crunchbase",
"github",
"ecosystem",
"stars",
"funding"
],
"repository": {
"type": "git",
"url": "https://github.com/cncf/landscapeapp"
},
"jest": {
"haste": {},
"testPathIgnorePatterns": [
"<rootDir>/node_modules"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tools/assetsTransformer.js",
"\\.(css)$": "<rootDir>/tools/assetsTransformer.js"
},
"setupFiles": [
"raf/polyfill"
]
},
"dependenciesMeta": {
"open": {
"unplugged": true
}
}
}