-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 4.45 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
{
"name": "daplog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3333",
"start": "next build && next start -p 3334",
"build": "npm run test && next build",
"deploy": "npm run build && next export && firebase deploy",
"test": "jest",
"lint": "eslint --ext .js,.ts,.tsx,.jsx .",
"analyze": "ANALYZE=true npm run build",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public",
"vrt:cap:build-storybook": "build-storybook --static-dir ./public --output-dir .storycap/storybook-static",
"vrt:cap": "npm run vrt:cap:build-storybook && storycap --serverTimeout 60000 --captureTimeout 10000 --serverCmd 'http-server .storycap/storybook-static --ci -p 6007' http://localhost:6007",
"vrt:cap:before": "npm run vrt:cap -- --outDir .storycap/screenshots/before",
"vrt:cap:after": "npm run vrt:cap -- --outDir .storycap/screenshots/after",
"vrt:diff": "reg-cli .storycap/screenshots/after .storycap/screenshots/before .storycap/screenshots/diff --report .storycap/report.html --json .storycap/reg.json --matchingThreshold 0.1",
"vrt:save": "trash .storycap/screenshots/before/** && cpx '.storycap/screenshots/after/**/*' .storycap/screenshots/before",
"vrt:report": "open .storycap/report.html",
"vrt:check": "npm run vrt:cap:after && npm run vrt:diff || npm run vrt:report",
"vrt:run": "reg-suit run",
"vrt": "npm run build-storybook && npm run vrt:cap && npm run vrt:run",
"ci:vrt:config": "cpy ./regconfig.ci.json ./ --rename=regconfig.json",
"ci:vrt": "npm run ci:vrt:config && npm run vrt",
"lighthouse-mkdir": "make-dir ./.lighthouse/reports/",
"lighthouse-cmd": "npm run lighthouse-mkdir && lighthouse --chrome-flags='--headless' --output 'html,json,csv'",
"lighthouse-index": "npm run lighthouse-cmd -- --output-path ./.lighthouse/reports/index 'https://blog.ruedap.com'",
"lighthouse-article": "npm run lighthouse-cmd -- --output-path ./.lighthouse/reports/artile 'https://blog.ruedap.com/2010/08/01/vimperator-hint-font-size'",
"lighthouse": "npm run lighthouse-index && npm run lighthouse-article"
},
"dependencies": {
"@next/bundle-analyzer": "9.5.5",
"clsx": "1.1.1",
"date-fns": "2.23.0",
"gray-matter": "4.0.3",
"he": "1.2.0",
"lodash": "4.17.21",
"next": "10.0.0",
"normalize.css": "8.0.1",
"polished": "3.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"remark": "13.0.0",
"remark-footnotes": "2.0.0",
"remark-highlight.js": "6.0.0",
"remark-html": "13.0.2",
"sass": "1.36.0",
"styled-components": "5.1.1"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@storybook/addon-actions": "6.3.6",
"@storybook/addon-links": "6.3.6",
"@storybook/addons": "6.3.6",
"@storybook/react": "6.3.6",
"@types/jest": "26.0.24",
"@types/lodash": "4.14.171",
"@types/node": "14.10.1",
"@types/react": "16.14.11",
"@types/react-test-renderer": "16.9.5",
"@types/styled-components": "5.1.3",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"babel-jest": "26.6.3",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.13.2",
"chromatic": "5.6.1",
"cpx": "1.5.0",
"cpy-cli": "3.1.1",
"eslint": "7.31.0",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "4.1.0",
"http-server": "0.12.3",
"jest": "26.6.3",
"jest-styled-components": "7.0.5",
"make-dir-cli": "2.0.0",
"react-test-renderer": "16.14.0",
"reg-cli": "0.17.0",
"reg-keygen-git-hash-plugin": "0.10.16",
"reg-notify-github-plugin": "0.10.16",
"reg-publish-s3-plugin": "0.10.16",
"reg-suit": "0.10.16",
"storycap": "3.0.4",
"trash-cli": "3.1.0",
"typescript": "4.0.2"
},
"jest": {
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/$1"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "babel-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/components/**/*.test.(ts|tsx)",
"**/styles/**/*.test.(ts|tsx)",
"**/tests/**/*.test.(ts|tsx)"
]
}
}