-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
107 lines (107 loc) · 3.13 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
{
"name": "opencollective-pdf",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/opencollective/opencollective-pdf.git"
},
"private": true,
"engines": {
"node": "20.x",
"npm": "10.x"
},
"dependencies": {
"@apollo/client": "3.11.8",
"@opencollective/taxes": "5.0.0",
"@styled-icons/feather": "10.47.0",
"@styled-system/prop-types": "^5.1.5",
"@styled-system/theme-get": "^5.1.2",
"babel-plugin-formatjs": "10.5.22",
"dayjs": "1.11.13",
"dotenv": "16.4.5",
"eslint-config-next": "^14.0.0",
"graphql": "16.9.0",
"html-pdf": "^3.0.1",
"i18n-iso-countries": "7.12.0",
"lodash": "4.17.21",
"moment": "2.30.1",
"next": "14.2.16",
"node-fetch": "2.7.0",
"pdf-fontkit": "1.8.9",
"pdf-lib": "1.17.1",
"polished": "^4.3.1",
"prop-types": "15.8.1",
"qrcode.react": "3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "6.8.4",
"sanitize-html": "2.13.1",
"styled-components": "5.3.11",
"styled-system": "5.1.5"
},
"scripts": {
"start": "next start -p ${PORT:-3333}",
"dev": "next dev -p 3002",
"build": "next build",
"test": "TZ=UTC jest",
"test:watch": "npm run test -- --watch",
"test:update": "TZ=UTC jest -u",
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"lint:quiet": "npm run lint -- --quiet",
"commit": "git-cz",
"cypress": "TZ=UTC cypress run",
"prettier": "prettier \"*.@(js|json|md|ts|tsx)\" \"@(components|lib|pages|scripts|test)/**/*.@(js|json|md|ts|tsx)\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"depcheck": "npx depcheck",
"type:check": "tsc",
"script": "babel-node --extensions .js,.ts,.tsx -- $@"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.11.0",
"@babel/node": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-plugin-styled-components": "^2.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.57.1",
"eslint-config-opencollective": "^3.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.0.5",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.3.3",
"url-loader": "^4.1.1"
},
"browser": {
"html-pdf": false,
"fs-extra": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"depcheck": {
"ignores": [
"jest-junit",
"@babel/preset-typescript",
"@types/node",
"eslint-import-resolver-typescript"
]
}
}