-
Notifications
You must be signed in to change notification settings - Fork 22
/
template.json
97 lines (97 loc) · 3.5 KB
/
template.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
{
"package": {
"dependencies": {
"@babel/helper-builder-react-jsx": "7.16.0",
"@material-ui/core": "4.11.4",
"@material-ui/icons": "4.11.2",
"@octokit/core": "3.5.1",
"@octokit/plugin-request-log": "1.0.2",
"@reduxjs/toolkit": "1.6.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/classnames": "2.2.10",
"@types/enzyme": "3.10.8",
"@types/jest": "26.0.9",
"@types/node": "14.0.27",
"@types/react": "16.9.44",
"@types/react-dom": "16.9.8",
"@types/react-helmet": "6.1.0",
"@types/react-redux": "7.1.9",
"@types/react-router-dom": "5.1.5",
"@types/sinon": "10.0.6",
"@types/styled-components": "5.1.2",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.3",
"add": "2.0.6",
"babel-eslint": "10.1.0",
"classnames": "2.2.6",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "5.2.1",
"eslint-import-resolver-typescript": "2.2.0",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "6.1.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.29.2",
"eslint-plugin-react-hooks": "4.0.8",
"eslint-webpack-plugin": "2.1.0",
"istanbul-reports": "3.0.2",
"moment": "2.29.1",
"node-sass": "4.14.1",
"nyc": "15.1.0",
"prettier-eslint": "13.0.0",
"prettier-eslint-cli": "5.0.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-redux": "7.2.6",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-test-renderer": "16.14.0",
"react-uuid": "1.0.2",
"recoil": "0.6.1",
"redux": "4.1.2",
"scss-loader": "0.0.1",
"serve": "11.3.2",
"sinon": "9.2.0",
"styled-components": "5.1.1",
"ts-jest": "26.4.3",
"typescript": "4.2.3",
"typings-for-scss-modules-loader": "1.5.1",
"yarn": "1.22.17",
"cra-bundle-analyzer": "0.1.0",
"husky": "4.3.0",
"jest": "27.4.3",
"react-snap": "1.23.0",
"@types/expect-puppeteer": "4.4.7",
"@types/jest-environment-puppeteer": "4.4.1",
"@types/puppeteer": "5.4.4",
"jest-puppeteer": "6.0.2",
"puppeteer": "12.0.1"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"fix": "eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"format": "prettier --write 'src/**/*.{ts,tsx,scss,css,json}'",
"isready": "yarn format && yarn lint && yarn build",
"coverage": "npm test -- --coverage",
"test:clean": "rimraf ./coverage",
"test:e2e": "jest -c e2e/jest.config.js --env=puppeteer",
"test:e2e-alone": "node e2e/puppeteer_standalone.js",
"test:e2e-watch": "jest -c e2e/jest.config.js --watch",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"build:serve": "yarn build && serve -s build",
"build:profile": "yarn build --profile && serve -s build",
"analyze": "yarn build && source-map-explorer 'build/static/js/*.js'",
"analyzer": "yarn build && npx cra-bundle-analyzer"
}
}
}