forked from jmau111/gatsby-nes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.14 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
{
"license": "MIT",
"name": "gatsby-nes",
"version": "1.2.0",
"description": "A theme built with Typescript, Gatsby, and NES.css",
"author": "Julien Maury",
"keywords": [
"gatsby",
"8-bits",
"pixels"
],
"scripts": {
"dev": "gatsby develop",
"cleandev": "gatsby clean && gatsby develop",
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint:js": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx --fix",
"lint:css": "stylelint \"./src/**/*.{css,scss,sass}\" --custom-syntax --fix",
"lint:all": "yarn lint:js && yarn lint:css",
"type-check": "tsc --noEmit",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"gatsby": "^4.12.1",
"gatsby-plugin-manifest": "^4.12.1",
"gatsby-plugin-offline": "^5.12.1",
"gatsby-plugin-preact": "^6.12.1",
"gatsby-plugin-react-helmet": "^5.12.1",
"gatsby-plugin-sass": "^5.12.1",
"gatsby-plugin-sharp": "^4.12.1",
"gatsby-source-filesystem": "^4.12.1",
"gatsby-transformer-sharp": "^4.12.1",
"preact": "^10.7.1",
"preact-render-to-string": "^5.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"sass": "^1.50.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-preset-gatsby": "^2.12.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"pinst": "^3.0.0",
"prettier": "2.6.2",
"react-native": "^0.68.1",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "^4.6.3"
}
}