-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.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
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
{
"name": "chrome-extension-discogs-add-collection",
"version": "2.1.0",
"private": true,
"files": [
"build"
],
"dependencies": {
"@craco/craco": "6.4.5",
"@hansogj/array.utils": "1.3.0",
"@hansogj/maybe": "2.1.0",
"@swan-io/boxed": "^0.12.0",
"craco-less": "2.0.0",
"find-js": "4.0.4",
"immer": "9.0.16",
"jshint": "2.13.5",
"madge": "5.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.4",
"react-scripts": "5.0.1",
"redux": "4.2.0",
"redux-saga": "1.2.1",
"regenerator-runtime": "0.13.10",
"reselect": "4.1.6",
"styled-components": "5.3.7",
"superagent": "8.0.0",
"typescript": "4.8.4",
"web-vitals": "2.1.4"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=true INLINE_RUNTIME_CHUNK=true craco start",
"build": "GENERATE_SOURCEMAP=true INLINE_RUNTIME_CHUNK=false craco build ",
"test:watch": "GENERATE_SOURCEMAP=true INLINE_RUNTIME_CHUNK=true craco test",
"test": "GENERATE_SOURCEMAP=true INLINE_RUNTIME_CHUNK=true craco test --watchAll=false --coverage",
"eject": "GENERATE_SOURCEMAP=true INLINE_RUNTIME_CHUNK=true craco eject",
"circularity:check": "madge --circular --extensions ts,tsx src/",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/ --ignore-path .gitignore",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src/ --ignore-path .gitignore --fix",
"prepack": "npm run lint:fix && npm test -- --watchAll=false && npm run build",
"zip": " tar xzf chrome-extension-discogs-add-collection-2.1.0.tgz && zip chrome-extension-discogs-add-collection.zip $(tar tf chrome-extension-discogs-add-collection*.tgz)"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/chrome": "0.0.197",
"@types/enzyme": "3.10.12",
"@types/jest": "29.1.2",
"@types/node": "18.8.5",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.26",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint-config-react-app": "7.0.1",
"jest-fetch-mock": "^3.0.3",
"react-dev-utils": "12.0.1",
"redux-devtools-extension": "2.13.9",
"redux-saga-test-plan": "^4.0.6",
"sass": "1.55.0"
},
"volta": {
"node": "18.7.0"
}
}