forked from electinth/politician-directory
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
118 lines (118 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
118
{
"name": "they-work-for-us",
"private": true,
"description": "They Work For Us",
"version": "3.0.0",
"scripts": {
"build": "gatsby clean && GATSBY_ENV=production gatsby build",
"build-windows": "gatsby clean && echo 🧼 Cleaned, setting env... && set GATSBY_ENV=production && echo 🏞 Env set, start building... && gatsby build",
"develop": "gatsby clean && gatsby develop",
"format": "prettier --write \"**/*.{js,json,md}\"",
"sync": "node --loader ts-node/esm tools/data-fetcher",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"dev": "yarn develop",
"lint": "eslint",
"doctoc": "doctoc README.md"
},
"dependencies": {
"@ant-design/icons": "4.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.3.0",
"@floating-ui/react-dom": "^1.0.1",
"@google-cloud/local-auth": "^1.0.0",
"@wevisdemo/ui": "^6.1.0",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.21.1",
"bottleneck": "^2.19.5",
"d3": "^5.16.0",
"d3-scale": "^3.2.1",
"faker": "^4.1.0",
"fast-csv": "^4.3.1",
"fs": "0.0.1-security",
"gatsby": "^5.6.1",
"gatsby-plugin-emotion": "^8.6.0",
"gatsby-plugin-image": "^3.6.0",
"gatsby-plugin-manifest": "^5.6.0",
"gatsby-plugin-offline": "^6.6.0",
"gatsby-plugin-plausible": "^0.0.7",
"gatsby-plugin-postcss": "^6.6.0",
"gatsby-plugin-react-helmet": "^6.6.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.6.0",
"gatsby-plugin-typography": "^5.6.0",
"gatsby-source-filesystem": "^5.6.0",
"gatsby-transformer-remark": "^6.6.0",
"gatsby-transformer-sharp": "^5.6.0",
"gatsby-transformer-yaml": "^5.6.0",
"googleapis": "^52.1.0",
"js-convert-case": "^4.2.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.20",
"nocodb-sdk": "^0.105.3",
"normalize.css": "^8.0.1",
"objects-to-csv": "^1.3.6",
"open": "^7.0.4",
"path": "^0.12.7",
"postcss-preset-env": "^7.7.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-autosuggest": "^10.0.2",
"react-dom": "^18.2.0",
"react-helmet": "^5.2.1",
"react-highlight-words": "^0.20.0",
"react-markdown": "^8.0.6",
"react-select": "^5.7.0",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"typography-theme-kirkham": "^0.16.19"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/js-yaml": "^4.0.5",
"babel-preset-gatsby": "^2.24.0",
"csvtojson": "^2.0.10",
"dayjs": "^1.10.4",
"doctoc": "^2.2.1",
"eslint": "^8.24.0",
"eslint-config-react-app": "^7.0.1",
"esm": "^3.2.25",
"husky": "^3.0.9",
"js-yaml": "^3.13.1",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"keywords": [
"gatsby"
],
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js}": [
"prettier --write",
"eslint --fix",
"git add"
],
"src/**/*.{json,css}": [
"prettier --write",
"git add"
],
"**/README.md": [
"prettier --write",
"git add"
]
}
}