-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.2 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "dc-algolia-blog-demo",
"version": "1.0.0-develop",
"description": "DC & Algolia driven blog",
"main": "index.js",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"precommit": "npm run lint",
"commit": "npx git-cz",
"test:jest": "jest",
"test": "run-s lint test:jest",
"lint": "prettier \"src/**/*.ts\" \"src/**/*.json\" \"src/**/*.vue\" --check && eslint \"src/**/*.ts\"",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"**/*.ts\" --write",
"fix:eslint": "eslint --fix \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/amplience/dc-algolia-blog-demo.git"
},
"keywords": [
"dc",
"algolia",
"blog",
"demo"
],
"author": "Amplience Ltd.",
"license": "Apache-2.0",
"homepage": "https://github.com/amplience/dc-algolia-blog-demo#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
100
],
"type-case": [
1,
"always",
"lower-case"
],
"subject-case": [
1,
"always",
"lower-case"
]
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"algoliasearch": "^3.33.0",
"cross-env": "^5.2.0",
"dayjs": "^1.8.14",
"dc-delivery-sdk-js": "^0.2.0",
"element-ui": "2.7.2",
"instantsearch.css": "^7.3.1",
"nuxt": "^2.4.0",
"ts-node": "^8.1.0",
"vue-instantsearch": "^2.2.2",
"vue-property-decorator": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.6.0",
"@nuxt/typescript": "^2.7.1",
"@nuxtjs/eslint-config": "^0.0.1",
"@types/algoliasearch": "^3.30.15",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.12.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"flush-promises": "^1.0.2",
"husky": "^2.2.0",
"jest": "^24.1.0",
"node-sass": "^4.12.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"sass-loader": "^7.1.0",
"ts-jest": "^24.0.2",
"vue-jest": "^3.0.3"
}
}