This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
102 lines (102 loc) · 2.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "cccatalog-frontend",
"version": "2020.10.2",
"description": "Common Creative search",
"repository": {
"type": "git",
"url": "git+https://github.com/creativecommons/cccatalog-frontend.git"
},
"bugs": {
"url": "https://github.com/creativecommons/cccatalog-frontend/issues"
},
"author": "sebworks",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"generate": "nuxt generate",
"start": "nuxt start",
"test": "jest",
"test:unit": "jest",
"test:e2e": "cypress open",
"test:e2e:ci": "cypress run",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"format": "prettier --write .",
"format:test": "prettier --check .",
"postinstall": "patch-package"
},
"dependencies": {
"@creativecommons/vocabulary": "^2020.9.2",
"@nuxt/components": "^1.1.0",
"@nuxtjs/sentry": "^5.0.3",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/svg": "^0.1.12",
"axios": "^0.20.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"build-url": "^3.0.0",
"bulma": "^0.9.0",
"case": "^1.6.3",
"clipboard": "^2.0.6",
"deepmerge": "^4.2.2",
"focus-trap": "^5.1.0",
"focus-trap-vue": "0.0.6",
"js-cookie": "^2.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.findindex": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.sortby": "^4.7.0",
"node-sass": "^4.14.1",
"nuxt": "^2.14.7",
"nuxt-ssr-cache": "^1.5.2",
"patch-package": "^6.2.2",
"sass-loader": "^10.0.1",
"uuid": "^8.3.1",
"vue-i18n": "^8.21.0"
},
"devDependencies": {
"@nuxt/types": "^2.14.7",
"@nuxtjs/eslint-module": "^2.0.0",
"@types/jest": "^26.0.10",
"@vue/test-utils": "^1.0.4",
"cypress": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vuejs-accessibility": "^0.5.1",
"glob": "^7.1.6",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"vue-jest": "^3.0.6"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix",
"*.{js,vue,css,md}": "prettier --write"
},
"volta": {
"node": "12.19.0",
"npm": "6.14.8"
}
}