This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.02 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
85
86
87
88
{
"name": "oca",
"version": "0.1.0",
"description": "Discover SVG cliparts with a few clicks and keywords.",
"author": {
"name": "Robin Millette",
"email": "[email protected]",
"url": "http://robin.millette.info"
},
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"analyze": "ANALYZE=true next build",
"dev": "next",
"build": "next build",
"clean": "rm -fr .next",
"export": "next export",
"healthier": "healthier",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/millette/oca.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/millette/oca/issues"
},
"homepage": "https://github.com/millette/oca#readme",
"healthier": {
"parser": "babel-eslint",
"globals": [
"fetch"
]
},
"eslintConfig": {
"rules": {
"react/react-in-jsx-scope": "off"
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@mdx-js/loader": "^1.5.8",
"@next/mdx": "^9.3.5",
"@theme-ui/presets": "^0.2.44",
"fast-glob": "^3.1.1",
"filesize": "^6.0.1",
"isomorphic-unfetch": "^3.0.0",
"jsonstream2": "^3.0.0",
"lodash.samplesize": "^4.2.0",
"lodash.uniq": "^4.5.0",
"minisearch": "^2.1.3",
"next": "^9.3.5",
"next-seo": "^3.2.0",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"read-pkg-up": "^7.0.1",
"svgo": "^1.3.2",
"theme-ui": "^0.2.52",
"through2": "^3.0.1",
"xml-flow": "^1.0.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.3.5",
"babel-eslint": "^10.0.3",
"healthier": "^3.3.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.10",
"prettier": "^2.0.2"
}
}