-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.11 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
{
"name": "micgre-client",
"private": true,
"version": "0.0.1",
"keywords": [
"gatsby"
],
"scripts": {
"test": "jest",
"lint": "eslint \"{source/**/*.[jt]s?(x),*.[jt]s?(x)}\"",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"{source/**/*.{[jt]s?(x),json},*.{[jt]s?(x),json}}\"",
"format-check": "prettier --check \"{source/**/*.{[jt]s?(x),json},*.{[jt]s?(x),json}}\"",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"start:development": "npm run type-check:watch & npm run develop",
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prepare": "husky install",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"gatsby": "5.4.1",
"gatsby-plugin-page-creator": "5.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsconfig-paths-webpack-plugin": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@commitlint/cz-commitlint": "17.4.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.5",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"commitizen": "4.2.6",
"eslint": "8.31.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.9.1",
"eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}