-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "is-it-hot-in-phx",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js",
"start:parrot": "concurrently --kill-others 'npm run start -- --env.mock' 'parrot-server --port 3001 --scenarios ./parrot.scenarios.js'",
"test": "jest"
},
"keywords": [
"parrot",
"jest-image-snapshot"
],
"author": "Andres Escobar <[email protected]> (https://github.com/anescobar1991)",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@babel/polyfill": "^7.7.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.0.6",
"babel-preset-amex": "^3.3.0",
"concurrently": "^5.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"jest": "^29.6.4",
"jest-fetch-mock": "^3.0.1",
"jest-image-snapshot": "^2.11.1",
"jest-puppeteer-preset": "^7.0.1",
"node-fetch": "^2.6.7",
"parrot-server": "^3.1.0",
"puppeteer": "^2.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"jest": {
"testPathIgnorePatterns": [
"browser"
],
"setupFiles": [
"<rootDir>/test-setup.js"
],
"projects": [
"<rootDir>",
{
"preset": "jest-puppeteer-preset",
"testMatch": [
"**/*.browser.test.js"
],
"setupFiles": [
"<rootDir>/test-setup.js"
]
}
]
}
}