This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.84 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
{
"author": "Grouparoo Inc <[email protected]>",
"name": "www.grouparoo.com",
"description": "The Grouparoo Public Website",
"version": "0.1.0",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/grouparoo/www.grouparoo.com.git"
},
"private": true,
"main": "api/dist/index",
"types": "api/dist/index",
"scripts": {
"build": "next build",
"start": "next start --port $PORT",
"dev": "API_URL=\"http://localhost:8080\" PORT=3001 next-remote-watch pages",
"dev-tel": "PORT=3001 next-remote-watch pages",
"generate-static-files": "ts-node ./scripts/generate_static_files.ts",
"pretest": "npm run lint && rm -rf .next && npm run build",
"test": "jest --runInBand",
"lint": "next lint && prettier --check pages/**/*tsx pages/**/*mdx components/**/*.tsx __tests__/**/*.tsx",
"lint-fix": "next lint --fix && prettier --write pages/**/*tsx pages/**/*mdx components/**/*.tsx __tests__/**/*.tsx",
"nuke": "rm -rf node_modules && rm -rf .next"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.17",
"@mapbox/rehype-prism": "0.8.0",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.3",
"axios": "0.26.0",
"babel-plugin-import-glob-array": "0.2.0",
"babel-plugin-transform-define": "2.0.1",
"bootstrap": "5.1.3",
"cheerio": "1.0.0-rc.10",
"classnames": "2.3.1",
"feed": "4.2.2",
"glob": "7.2.0",
"gray-matter": "4.0.3",
"image-size": "1.0.1",
"moment": "2.29.2",
"next": "12.1.0",
"next-mdx-remote": "1.0.1",
"prism-react-renderer": "^1.3.1",
"react": "17.0.2",
"react-bootstrap": "2.1.2",
"react-dom": "17.0.2",
"react-hook-form": "7.27.1",
"react-markdown": "8.0.0",
"react-moment": "1.1.1",
"react-syntax-highlighter": "15.4.5",
"rehype-autolink-headings": "5.1.0",
"rehype-slug": "4.0.1",
"remark-external-links": "8.0.0",
"remark-react": "^8.0.0",
"sass": "1.49.9",
"sharp": "0.30.5",
"sitemap": "7.1.1",
"typescript": "4.6.2",
"uuid": "8.3.2",
"validator": "13.7.0"
},
"devDependencies": {
"@lhci/cli": "0.9.0",
"@prettier/plugin-xml": "1.2.0",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react-dom": "17.0.11",
"csv-stringify": "6.0.5",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"isomorphic-fetch": "3.0.0",
"jest": "27.5.1",
"jest-environment-webdriver": "grouparoo/jest-webdriver#jest-v27-webdriver",
"jest-mock-axios": "4.5.0",
"markdown-table": "2.0.0",
"next-remote-watch": "1.0.0",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"xml2js": "0.4.23"
}
}