-
Notifications
You must be signed in to change notification settings - Fork 600
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 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
{
"name": "napi-resource",
"description": "Tutorials and more for Node.js Node-API.",
"version": "1.0.0",
"author": "The Node-API Team",
"keywords": [
"node",
"nodejs",
"n-api",
"napi",
"tutorials",
"native-addon"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"commit": "git cz",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"start": "serve public",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"dependencies": {
"@reach/skip-nav": "^0.18.0",
"babel-plugin-styled-components": "^2.1.4",
"classnames": "^2.2.6",
"gatsby": "^5.14.1",
"gatsby-plugin-canonical-urls": "^5.14.0",
"gatsby-plugin-catch-links": "^5.14.0",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-netlify-cache": "^2.0.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-styled-components": "^6.14.0",
"gatsby-plugin-typescript": "^5.14.0",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-copy-linked-files": "^6.14.0",
"gatsby-remark-embed-snippet": "^8.14.0",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-remark-relative-images": "^2.0.5",
"gatsby-remark-responsive-iframe": "^6.14.0",
"gatsby-remark-smartypants": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-json": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"polished": "^4.3.1",
"prism-themes": "^1.1.0",
"prismjs": "^1.16.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-helmet": "^6.1.0",
"rehype-react": "^8.0.0",
"styled-components": "^6.1.14",
"styled-system": "^5.1.2",
"typescript": "5.7.2",
"utility-types": "^3.9.0"
},
"devDependencies": {
"@types/classnames": "^2.2.8",
"@types/history": "^5.0.0",
"@types/node": "^22.10.5",
"@types/reach__router": "^1.2.4",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-helmet": "^6.1.11",
"@types/styled-components": "^5.1.34",
"@types/styled-system": "^5.1.2",
"gh-pages": "^6.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"serve": "^14.2.4",
"tslint": "^6.1.3",
"tslint-config-kata": "^1.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^5.0.0"
}
}