-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 KB
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
{
"name": "flags",
"version": "0.1.0",
"private": true,
"devDependencies": {
"async": "^2.6.4",
"axios": "^0.21.2",
"canvas": "^2.9.0",
"cheerio": "^1.0.0-rc.2",
"cli-progress": "^2.1.1",
"color-converter": "^1.4.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"pixelbank": "^0.0.2",
"prettier": "^2.5.1",
"slugify": "^1.4.5"
},
"dependencies": {
"@rooks/use-key": "^1.1.0",
"query-string": "^6.14.1",
"react": "^17.0.2",
"react-aria-menubutton": "^6.3.0",
"react-dom": "^16.14.0",
"react-lazy-load-image-component": "^1.5.0",
"react-loading-image": "^0.5.0",
"react-modal": "^3.14.4",
"react-scripts": "^3.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"scripts": {
"fetch-data": "node modules/index",
"start": "react-scripts start",
"build": "PUBLIC_URL=https://flags.dsgn.it react-scripts build && node ./modules/set-redirects",
"test": "react-scripts test --testMatch=\"**/*.spec.js\"",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}