-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.77 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
119
120
121
122
123
124
{
"name": "rosedu-ng",
"description": "ROSEdu Website",
"license": "UNLICENSED",
"version": "1.22.0",
"author": "Bogdan Marius Calapod <[email protected]>",
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@gatsbyjs/reach-router": "^2.0.1",
"@types/googlemaps": "^3.43.3",
"@types/markerclustererplus": "^2.1.33",
"@types/react": "^18.2.74",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"anchorate": "1.2.4",
"babel-eslint": "^10.1.0",
"css-loader": "^7.0.0",
"eslint": "7.x",
"gatsby": "^5.13.3",
"gatsby-link": "5.13.1",
"gatsby-plugin-google-gtag": "^5.13.1",
"gatsby-plugin-hotjar": "1.1.1",
"gatsby-plugin-i18n": "1.0.1",
"gatsby-plugin-react-helmet": "6.13.1",
"gatsby-plugin-sass": "6.13.1",
"i18next": "23.10.1",
"i18next-browser-languagedetector": "7.2.1",
"i18next-http-backend": "2.5.0",
"react-google-maps": "^9.4.5",
"react-helmet": "^6.1.0",
"react-i18next": "14.1.0",
"react-lazyload": "3.2.1",
"react-scrollable-anchor": "^0.6.1",
"sass": "^1.74.1",
"typescript": "^5.4.4",
"webpack": "^5.91.0"
},
"keywords": [
"gatsby",
"gdpr",
"landingpage"
],
"scripts": {
"start": "gatsby develop --open",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"test": "jest",
"test-coverage": "jest --coverage",
"test-prettier": "CI=true yarn test",
"pretty": "prettier-standard --write \"src/**/*.js\"",
"precommit": "lint-staged",
"prepush": "yarn test-prettier",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"lint-staged": {
"*.js": [
"yarn pretty",
"git add"
]
},
"babel": {
"env": {
"test": {
"presets": [
"es2015",
"react"
],
"plugins": [
"syntax-class-properties",
"transform-class-properties"
]
}
}
},
"jest": {
"transform": {
".(js|jsx)": "babel-jest"
},
"testRegex": "(\\.(test|spec))\\.(jsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"modulePaths": [
"src"
],
"moduleNameMapper": {
"\\.(scss|svg|png|jpg)$": "<rootDir>/src/styleMock.js"
},
"moduleFileExtensions": [
"jsx",
"js"
],
"coverageReporters": [
"lcov",
"text",
"html"
],
"setupTestFrameworkScriptFile": "./src/setupTests.js"
},
"devDependencies": {
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"gatsby-plugin-asset-path": "^3.0.4",
"gatsby-plugin-postcss": "^6.13.1",
"gh-pages": "^5.0.0",
"husky": "^0.14.3",
"jest": "^29.7.0",
"lint-staged": "^7.3.0",
"prettier": "^1.9.2",
"prettier-standard": "^16.4.1",
"prop-types": "^15.6.0",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "18.2.0"
}
}