-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "aqt-list-app",
"version": "0.1.2",
"private": true,
"description": "Web application to emulate aqt list-qt and list-tool in the browser, without a backend",
"homepage": "https://ddalcino.github.io/aqt-list-server",
"license": "MIT",
"author": "David Dalcino <[email protected]>",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --fix src/ --ext .js,.jsx,.ts,.tsx",
"start": "react-scripts start",
"test": "react-scripts test",
"test:nowatch": "react-scripts test --watchAll=false"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@types/node": "^16.10.4",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.0",
"cheerio": "^1.0.0-rc.10",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-scripts": "^5.0.1",
"semver": "^7.5.2",
"web-vitals": "^2.1.1"
},
"devDependencies": {
"@testing-library/dom": "^8.7.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.4.1",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"typescript": "^4.4.4"
}
}