forked from opencollective/opencollective-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 3.09 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
{
"name": "funders-dashboard",
"version": "1.0.0",
"description": "Kickstart a new frontend project at Open Collective",
"repository": "https://github.com/opencollective/funders-dashboard",
"private": true,
"bugs": {
"url": "https://github.com/opencollective/opencollective/issues"
},
"engines": {
"node": "16.x",
"npm": "8.x"
},
"scripts": {
"dev": "next -p 3004",
"build": "next build",
"graphql:codegen": "graphql-codegen --config scripts/config/graphql-codegen.ts",
"graphql:update": "npm run graphql:get-schema && npm run graphql:codegen",
"graphql:get-schema": "ts-node ./scripts/update-gql-schemas.ts http://localhost:3060/graphql/v2 lib/graphql/schemaV2.graphql && prettier lib/graphql/schemaV2.graphql --write",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"lint:quiet": "npm run lint -- --quiet",
"prettier": "prettier \"*.@(js|ts|jsx|tsx|json|md)\" \"@(components|lib|pages|scripts|server|test|stories)/**/*.@(js|jsx|ts|tsx|json|md|mdx)\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"start": "next start",
"type:check": "tsc"
},
"contributors": [
"Benjamin Piouffle <[email protected]>",
"François Hodierne <[email protected]>"
],
"dependencies": {
"@apollo/client": "3.6.5",
"@opencollective/frontend-components": "0.3.8",
"@styled-system/prop-types": "^5.1.5",
"babel-plugin-formatjs": "^10.3.31",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"dayjs": "^1.11.5",
"deepmerge": "4.2.2",
"graphql": "16.6.0",
"lodash": "4.17.21",
"next": "12.3.1",
"next-auth": "4.14.0",
"next-transpile-modules": "^9.1.0",
"nextjs-progressbar": "0.0.16",
"node-fetch": "2.6.7",
"nodemailer": "6",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^6.2.1",
"styled-components": "^5.3.6",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/gql-tag-operations-preset": "^1.6.0",
"@graphql-eslint/eslint-plugin": "^3.12.0",
"@next/eslint-plugin-next": "^12.3.1",
"@types/node": "^17",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.15",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"eslint-config-opencollective": "^3.0.3",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-formatjs": "^4.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-styled-components-a11y": "1.0.0",
"prettier": "^2.6.2",
"typescript": "^4"
}
}