-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "dzi-search",
"version": "0.1.0",
"private": true,
"dependencies": {
"minisearch": "3.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-scripts": "4.0.1",
"scrape-it": "5.2.4",
"styled-components": "5.2.1",
"ts-node": "9.1.1",
"web-vitals": "1.0.1"
},
"devDependencies": {
"@cypress/react": "5.3.2",
"@cypress/webpack-dev-server": "1.1.2",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.2.2",
"@testing-library/user-event": "12.6.0",
"@types/jest": "26.0.19",
"@types/node": "14.14.14",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/styled-components": "5.1.5",
"cypress": "7.1.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.21.5",
"nodemon": "2.0.6",
"prettier": "2.2.1",
"typescript": "4.1.3"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"scrape": "ts-node --project src/scraper/tsconfig.json src/scraper/scraper.ts",
"scrape:watch": "nodemon src/scraper/scraper.ts",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write src/**/*.{ts,tsx,css}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"update": "yarn upgrade-interactive --exact --latest",
"cypress:open": "cypress open-ct"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}