-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 3.76 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
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "escemi-website",
"version": "0.0.1",
"description": "ESCEMI corporate website",
"repository": {
"type": "git",
"url": "git+https://github.com/escemi-tech/escemi-website.git"
},
"author": {
"name": "ESCEMI",
"email": "[email protected]"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"bootstrap": "^5.0.0",
"gatsby": "^5.14.0",
"gatsby-plugin-fontawesome-css": "^1.2.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-purgecss": "^6.0.1",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-react-i18next": "^3.0.1",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.0",
"gatsby-plugin-typescript": "^5.14.0",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-sharp": "^5.14.0",
"i18next": "^24.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-i18next": "^15.0.0",
"react-images": "^1.2.0-beta.6",
"react-scrollspy": "^3.4.3",
"sass": "^1.53.0",
"smoothscroll-polyfill": "^0.4.4"
},
"scripts": {
"start": "yarn build:deploy && yarn serve",
"dev": "gatsby develop",
"build": "tsc --noEmit",
"build:ci": "gatsby build --log-pages --prefix-paths",
"serve": "gatsby serve",
"clean": "rimraf .cache public",
"format": "prettier --cache --write '**/*.{ts,tsx}'",
"jest": "jest --detectOpenHandles --forceExit",
"test": "yarn jest --maxWorkers=50%",
"test:watch": "yarn jest --watch --maxWorkers=25%",
"test:cov": "yarn jest --coverage",
"test:ci": "yarn test:cov --runInBand",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"prepare": "ts-dev-tools install"
},
"devDependencies": {
"@ts-dev-tools/react": "^1.8.5",
"@types/react-helmet": "^6.1.1",
"@types/smoothscroll-polyfill": "^0.3.1",
"babel-preset-gatsby": "^3.0.0",
"gatsby-plugin-eslint": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"rimraf": "^6.0.1"
},
"keywords": [
"gatsby",
"gatsby-starter",
"gatsby-starter-stylish"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/escemi-tech/escemi-website/issues"
},
"homepage": "https://github.com/escemi-tech/escemi-website#readme",
"prettier": {
"semi": true,
"printWidth": 100,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test)?(.*).+(ts|tsx|js)"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest-preprocess.js"
},
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js"
},
"testPathIgnorePatterns": [
"node_modules",
"\\.cache",
"<rootDir>.*/public"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"testEnvironmentOptions": {
"url": "http://localhost"
},
"setupFiles": [
"<rootDir>/loadershim.js"
],
"collectCoverageFrom": [
"**/src/**/*.[jt]s?(x)"
]
},
"tsDevTools": {
"version": "20240617094000-config-nx-scopes"
}
}