-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
85 lines (85 loc) · 2.63 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
{
"name": "react-screenshot-test",
"version": "2.3.3",
"author": {
"name": "François Wouts",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/fwouts/react-screenshot-test"
},
"license": "MIT",
"scripts": {
"build": "rm -rf dist; tsc",
"unit-test": "jest",
"screenshot-test-local": "jest -c jest.screenshot.config.js",
"screenshot-test-percy": "SCREENSHOT_MODE=percy percy exec -- jest -c jest.screenshot.config.js",
"lint": "yarn eslint && yarn prettier",
"lint:check": "yarn eslint:check && yarn prettier:check",
"prettier": "yarn prettier:check --write",
"prettier:check": "prettier --check './src/**/*.ts' './src/**/*.tsx'",
"eslint": "yarn eslint:check --fix",
"eslint:check": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "yarn build"
},
"types": "dist/lib/index.d.ts",
"devDependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@percy/cli": "^1.0.0-beta.48",
"@percy/puppeteer": "^2.0.0",
"@types/dockerode": "^2.5.26",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/jest-image-snapshot": "^2.11.0",
"@types/puppeteer": "^5.4.3",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.4",
"@types/selenium-standalone": "^6.15.0",
"@types/styled-components": "^5.0.0",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.1.0",
"node-sass": "^5.0.0",
"normalize.css": "^8.0.1",
"prettier": "^2.0.2",
"puppeteer": "8.0.0",
"react": "16 - 17",
"react-dom": "16 - 17",
"react-spinners": "^0.8.1",
"styled-components": "^5.0.1",
"ts-jest": "^25.2.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^4.2.4"
},
"dependencies": {
"assert-never": "^1.2.0",
"body-parser": "^1.19.0",
"callsites": "^3.1.0",
"chalk": "^3.0.0",
"cross-spawn": "7.0.1",
"dockerode": "^3.0.2",
"express": "^4.17.1",
"get-port": "^5.1.0",
"is-docker": "^2.0.0",
"jest-image-snapshot": "^2.11.1",
"postcss-load-config": "2.1.0",
"postcss-modules": "^1.4.1",
"selenium-standalone": "^6.17.0",
"uuid": "^7.0.2",
"webdriverio": "^5.22.4"
},
"peerDependencies": {
"react": "16 - 17",
"react-dom": "16 - 17"
}
}