This repository has been archived by the owner on Jun 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "developer-excuses-webextension",
"description": "Overrides your new tabs with a random developer excuse over a beautiful photo background",
"version": "1.0.1",
"author": "Alan Tai",
"repository": {
"type": "git",
"url": "git+https://github.com/ayltai/developer-excuses-webextension.git"
},
"bugs": {
"url": "https://github.com/ayltai/developer-excuses-webextension/issues"
},
"license": "MIT",
"keywords": [
"developer",
"excuses",
"unsplash",
"newtab",
"firefox",
"chrome",
"edge"
],
"scripts": {
"check": "npm run check-stylesheet && npm run check-javascript && npm run check-web-ext",
"check-stylesheet": "./node_modules/.bin/stylelint src/**/*.css public/**/*.css !build/**",
"check-javascript": "./node_modules/.bin/eslint src/**/*.js src/**/*.jsx",
"check-web-ext": "./node_modules/.bin/web-ext lint -s ./build/",
"codecov": "./node_modules/.bin/codecov",
"preinstall": "npx npm-force-resolutions",
"start": "web-ext run -s ./build/",
"build": "SKIP_PREFLIGHT_CHECK=true INLINE_RUNTIME_CHUNK=false react-scripts build && ./node_modules/.bin/web-ext build --overwrite-dest -s ./build/",
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test --ci --no-watchman --coverage --coverageDirectory=coverage",
"eject": "react-scripts eject"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.2.1",
"acorn": "^8.7.1",
"codecov": "^3.8.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.18.0",
"react-scripts": "^5.0.1",
"react-sortable-hoc": "^2.0.0",
"react-test-renderer": "^18.2.0",
"sinon-chrome": "^3.0.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"web-ext": "^7.1.0"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"kenburns": "^2.0.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"unsplash-js": "^7.0.15"
},
"resolutions": {
"acorn": "8.7.1",
"minimist": "1.2.5",
"yargs-parser": "18.1.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}