This repository was archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.34 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.34 KB
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
{
"name": "franksmovielog.com",
"private": true,
"description": "My life at the movies.",
"version": "0.1.0",
"author": "Frank Showalter <fshowalter@gmail.com>",
"dependencies": {
"@silvenon/remark-smartypants": "^1.0.0",
"gatsby": "^3.0.4",
"gatsby-plugin-catch-links": "^3.0.0",
"gatsby-plugin-feed": "^3.0.0",
"gatsby-plugin-image": "^1.0.1",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-preact": "^5.0.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sass": "^4.0.2",
"gatsby-plugin-sharp": "^3.0.1",
"gatsby-plugin-sitemap": "^3.0.0",
"gatsby-remark-smartypants": "^3.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-json": "^3.0.0",
"gatsby-transformer-remark": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"littlefoot": "^3.4.1",
"node-sass": "^5.0.0",
"preact": "^10.5.13",
"preact-render-to-string": "^5.1.16",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-slider": "^1.0.11",
"typescript": "^4.2.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.0",
"@types/react-slider": "^1.1.1",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-cli": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"react-test-renderer": "^17.0.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-order": "^4.1.0",
"typed-scss-modules": "^4.1.0"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "yarn gatsby build --log-pages",
"develop": "yarn gatsby develop -H 0.0.0.0",
"format": "yarn prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"serve": "yarn gatsby serve",
"clean": "yarn gatsby clean",
"lint": "yarn run lint:js && yarn run lint:css",
"lint:js": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"lint:css": "yarn stylelint './src/**/*.?(s)css*'",
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"type-check": "yarn tsc --noEmit",
"type-css": "yarn tsm src/ --exportType named",
"sync": "cp -av ../movielog-new/export/*.json ./content/data",
"watch-movielog": "./watch-movielog.js"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}