This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 4.06 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "kitten",
"description": "",
"scripts": {
"dev": "gatsby develop --https --cert-file ./certificates/localhost.pem --key-file ./certificates/localhost-key.pem",
"build": "gatsby build",
"build:og-gen": "ts-node --project tsconfig.builder.json scripts/og-gen.ts",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\" --ignore-path .gitignore",
"eslint": "eslint ./ --ext ts,tsx",
"eslint:fix": "eslint ./ --ext ts,tsx --fix",
"stylelint": "stylelint --config .stylelintrc.js 'src/**/*.scss'",
"stylelint:fix": "stylelint --config .stylelintrc.js 'src/**/*.scss' --fix",
"htmllint": "markuplint **/*.html **/*.tsx src/**/*.tsx src/**/**/*.tsx",
"test": "jest --testEnvironment jsdom",
"test-cover": "jest --coverage",
"test:w": "npm run test-cover -- --watch"
},
"dependencies": {
"@nekohack/footer-ui": "1.0.0",
"@nekohack/normalize.css": "2.6.0",
"@stripe/react-stripe-js": "1.8.1",
"@stripe/stripe-js": "1.32.0",
"dayjs": "1.11.3",
"gatsby": "4.16.0",
"gatsby-plugin-google-adsense": "1.1.3",
"gatsby-plugin-google-analytics": "4.16.0",
"gatsby-plugin-image": "2.16.1",
"gatsby-plugin-manifest": "4.16.0",
"gatsby-plugin-preact": "6.16.0",
"gatsby-plugin-react-helmet": "5.16.0",
"gatsby-plugin-react-intl": "4.0.0",
"gatsby-plugin-react-svg": "3.1.0",
"gatsby-plugin-robots-txt": "1.7.1",
"gatsby-plugin-sass": "5.16.0",
"gatsby-plugin-sharp": "4.16.1",
"gatsby-plugin-typescript": "4.16.0",
"gatsby-source-filesystem": "4.16.0",
"gatsby-transformer-sharp": "4.16.0",
"gatsby-transformer-yaml": "4.16.0",
"nekohack-ui": "3.0.2",
"preact": "10.8.0",
"preact-render-to-string": "5.2.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-helmet": "6.1.0",
"react-test-renderer": "18.1.0",
"react-text-loop": "2.3.0",
"react-tooltip": "4.2.21",
"styled-components": "5.3.5",
"ts-node": "10.8.1"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/helper-create-regexp-features-plugin": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@markuplint/jsx-parser": "2.4.1",
"@nekohack/eslint-config-react": "0.10.0",
"@nekohack/stylelint-config": "0.3.0",
"@swc/core": "1.2.203",
"@types/jest": "27.5.2",
"@types/react": "18.0.13",
"@types/react-dom": "18.0.5",
"@types/react-helmet": "6.1.5",
"@types/react-test-renderer": "18.0.0",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"babel-jest": "27.5.1",
"babel-preset-gatsby": "2.16.0",
"dotenv": "8.6.0",
"eslint": "8.17.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"markuplint": "2.8.0",
"postcss": "8.4.14",
"postcss-scss": "4.0.4",
"prettier": "2.7.0",
"puppeteer": "13.7.0",
"sass": "1.52.3",
"stylelint": "14.9.1",
"stylelint-a11y": "1.2.3",
"stylelint-config-recess-order": "3.0.0",
"stylelint-scss": "4.2.0",
"ts-jest": "27.1.5",
"typescript": "4.7.3"
},
"jest": {
"globals": {
"__LINK_PREFIX__": "",
"__PATH_PREFIX__": ""
},
"testURL": "http://localhost:8080",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node",
"json"
],
"transform": {
".(ts|tsx)": "ts-jest",
"^.+\\.(js|jsx)?$": "<rootDir>/jest-preprocess.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"setupFiles": [
"<rootDir>/loadershim.js"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js"
},
"collectCoverageFrom": [
"src/components/**/*.{ts,tsx}"
],
"testPathIgnorePatterns": [
".cache",
"node_modules",
"__tests__/constants.ts",
"public"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
]
}
}