This repository was archived by the owner on May 22, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 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
57
58
59
60
{
"name": "unsplash-photos",
"version": "0.1.0",
"description": "The latest photos from Unsplash.",
"homepage": "https://github.com/gregrickaby/unsplash/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/gregrickaby/unsplash.git"
},
"author": "Greg Rickaby <gregrickaby@gmail.com>",
"bugs": {
"url": "https://github.com/gregrickaby/unsplash/issues"
},
"private": true,
"license": "GPL-2.0",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "next build",
"clean": "rm -rf .next",
"dev": "npm run clean && next dev",
"develop": "npm run dev",
"export": "next export",
"format": "npx prettier --config=prettier.config.js '**/*.{js,jsx,ts,tsx,md,html,css,scss,json,yml}' --write || true",
"lint": "npm run format && npm run lint:js && npm run lint:css",
"lint:css": "npx stylelint --config=stylelint.config.js '**/*.css' --fix || true",
"lint:js": "npx eslint --config=.eslintrc.js ./ --fix || true",
"start": "next start"
},
"dependencies": {
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.5",
"@babel/core": "^7.14.2",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.2.15",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.0",
"prop-types": "^15.7.2",
"react-intersection-observer": "^8.32.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tailwindcss": "^2.1.2"
}
}