forked from opencollective/opencollective-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.36 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
{
"name": "opencollective-invoices",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/opencollective/opencollective-invoices.git"
},
"private": true,
"engines": {
"node": "16.x",
"npm": "8.x"
},
"dependencies": {
"@apollo/client": "3.6.9",
"@babel/runtime": "7.18.9",
"@opencollective/frontend-components": "0.3.8",
"@styled-icons/feather": "10.34.0",
"@styled-system/theme-get": "5.1.2",
"babel-plugin-formatjs": "10.3.25",
"cors": "2.8.5",
"cross-fetch": "3.1.5",
"debug": "4.3.4",
"dotenv": "10.0.0",
"express": "4.18.1",
"express-winston": "4.2.0",
"graphql": "14.7.0",
"graphql-request": "2.0.0",
"html-pdf": "3.0.1",
"i18n-iso-countries": "7.5.0",
"intl": "1.2.5",
"lodash": "4.17.21",
"moment": "2.29.4",
"next": "10.2.3",
"next-transpile-modules": "7.3.0",
"polished": "4.2.2",
"prop-types": "15.8.1",
"qrcode.react": "1.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "5.25.1",
"rebass": "4.0.7",
"sanitize-html": "2.7.1",
"styled-components": "5.3.6",
"styled-system": "5.1.5",
"winston": "3.8.1"
},
"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:coverage": "codecov",
"test:update": "TZ=UTC jest -u",
"lint": "eslint . --ignore-path .gitignore",
"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)\" \"@(components|lib|pages|scripts|test)/**/*.@(js|json|md)\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-intl": "^7.9.2",
"babel-plugin-styled-components": "^1.13.2",
"codecov": "^3.8.2",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"eslint-config-opencollective": "^3.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-graphql": "^4.0.0",
"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": "^27.0.6",
"jest-junit": "^13.0.0",
"jest-styled-components": "^7.0.5",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.0",
"shx": "^0.3.3",
"url-loader": "^4.1.1"
},
"browser": {
"html-pdf": false,
"fs-extra": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.js",
"testPathIgnorePatterns": [
"/node_modules/",
"/test/__fixtures__/",
"/test/__helpers__/",
"/test/__mocks__/",
"/test/setup.js"
],
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2)$": "<rootDir>/test/__mocks__/fileMock.js"
}
}
}