-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.32 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
{
"name": "gatsby-nocodb-graphql-boilerplate",
"version": "1.0.0",
"private": true,
"description": "Gatsby with NocoDB (GraphQL) boilerplate",
"author": "Wing-Kam WONG <wingkwong.code@gmail.com>",
"keywords": [
"gatsby",
"nocodb",
"graphql",
"boilerplate"
],
"scripts": {
"dev": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint ."
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@types/react-helmet": "^6.1.1",
"@types/styled-components": "^5.1.9",
"babel-plugin-styled-components": "^1.12.0",
"csvtojson": "^2.0.10",
"dotenv": "^9.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"gatsby": "^3.4.1",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-google-analytics": "^3.5.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^3.5.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-react-helmet": "^4.5.0",
"gatsby-plugin-sitemap": "^4.1.0",
"gatsby-plugin-styled-components": "^4.5.0",
"gatsby-source-filesystem": "^3.6.0",
"gatsby-source-graphql": "^3.10.0",
"gatsby-transformer-sharp": "^3.6.0",
"i18next": "^20.2.4",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.15",
"styled-components": "^5.3.0",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}