-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.41 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.41 KB
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": "portal-main",
"version": "0.1.0",
"private": true,
"homepage": "https://github.com/datopian/portal#readme",
"directories": {
"test": "__tests__"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"cypress:ci": "cypress run --config video=false",
"e2e": "cypress run",
"format": "prettier --single-quote --write .",
"pre-commit": "npm run lint:fix && npm run format",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.0.2",
"@apollo/react-hooks": "^3.1.5",
"@fullhuman/postcss-purgecss": "^2.3.0",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.3",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-rest": "0.7.3",
"apollo-server-testing": "^2.16.0",
"axios": "^0.25.0",
"bytes": "^3.1.0",
"chart.js": "^3.8.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-15": "^1.4.1",
"graphql": "^15.1.0",
"graphql-anywhere": "^4.2.7",
"graphql-tag": "^2.10.3",
"html-react-parser": "^0.13.0",
"jszip": "^3.10.0",
"markdown-it": "^11.0.0",
"next": "^12.0.1",
"next-translate": "^1.1.1",
"nodemailer": "^6.7.8",
"nprogress": "^0.2.0",
"portal": "https://github.com/datopian/portal.js",
"qs": "^6.9.4",
"react": "^17.0.2",
"react-chartjs-2": "^4.3.1",
"react-datepicker": "^4.8.0",
"react-dom": "^17.0.2",
"react-scrollbars-custom": "^4.1.1",
"react-simple-star-rating": "^4.0.5",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^4.2.21",
"react-tsparticles": "^1.39.2",
"slugify": "^1.4.0",
"styled-components": "^5.3.3",
"swiper": "^8.2.6",
"timeago.js": "^4.0.2",
"tinacms": "^0.66.8"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.3",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-datepicker": "^4.4.2",
"@types/react-tooltip": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"autoprefixer": "^10.4.2",
"babel-jest": "^26.6.3",
"babel-plugin-graphql-tag": "^2.5.0",
"cypress": "^8.7.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^7.0.0",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"lint-staged": ">=10",
"nock": "^12.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "6.7.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"tailwindcss": "^3.1.6",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,html,md}": "npm run pre-commit"
},
"resolutions": {
"graphql": "^15.1.0"
}
}