-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.28 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
{
"name": "cyb50-bok-nett",
"private": true,
"description": "CYB50 Jubileumsbok på nett",
"version": "0.1.0",
"author": "Arne Hassel <[email protected]> (https://icanhasweb.net/)",
"contributors": [
"Mats Schjølberg <[email protected]>"
],
"dependencies": {
"@mdx-js/mdx": "2.1.5",
"@mdx-js/react": "2.1.5",
"clsx": "1.2.1",
"gatsby": "^5.0.0",
"gatsby-plugin-image": "^3.0.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-mdx": "^5.0.0",
"gatsby-plugin-offline": "^6.0.0",
"gatsby-plugin-page-creator": "^5.0.0",
"gatsby-plugin-react-helmet": "^6.0.0",
"gatsby-plugin-sass": "^6.0.0",
"gatsby-plugin-sharp": "^5.0.0",
"gatsby-plugin-typescript": "^5.0.0",
"gatsby-source-filesystem": "^5.0.0",
"gatsby-transformer-csv": "^5.0.0",
"gatsby-transformer-remark": "^6.0.0",
"gatsby-transformer-sharp": "^5.0.0",
"normalize.css": "8.0.1",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"recharts": "2.1.15"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "16.18.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-helmet": "^6.1.5",
"@types/recharts": "1.8.23",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "8.26.0",
"eslint-plugin-react": "7.31.10",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"sass": "1.55.0",
"ts-jest": "27.1.5",
"typescript": "4.8.4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint-fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"test": "jest",
"watch": "jest --watch"
},
"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/**/*.ts": [
"eslint"
],
"src/**/*.tsx": [
"eslint"
]
}
}