-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "visual-unit-tests",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "craco test",
"eject": "react-scripts eject",
"processConfig": "circleci config process .circleci/config.yml > .circleci/process.yml",
"updateSnapshot": "circleci local execute -c .circleci/process.yml --job update",
"report:serve": "allure serve",
"report:build": "allure generate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"globalSetup": "<rootDir>/jest/setupTests.globalSetup",
"globalTeardown": "<rootDir>/jest/setupTests.globalTeardown"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@craco/craco": "^6.4.3",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/mkdirp": "^0.5.2",
"@types/node": "11.9.3",
"@types/puppeteer": "^1.12.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/styled-components": "^5.1.25",
"allure-commandline": "^2.17.2",
"jest-allure": "^0.1.3",
"jest-allure-image-snapshot": "0.0.10",
"puppeteer": "1.11.0",
"react-scripts": "^5.0.1",
"typescript": "^4.6.4"
}
}