-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "willin-love",
"version": "0.0.0",
"description": "https://willin.love",
"private": true,
"scripts": {
"sync": "node sync/bin/sync",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --fix --ext .js,.vue --ignore-path .eslintignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/willin-love/willin.love.git"
},
"keywords": [
"v0",
"willin",
"love"
],
"author": "Willin Wang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/willin-love/willin.love/issues"
},
"homepage": "https://github.com/willin-love/willin.love#readme",
"dependencies": {
"nuxt": "^2.14.0",
"nuxt-i18n": "^6.13.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-willin": "^1.0.5",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=8.0"
},
"ava": {
"files": [
"test/**/*.js",
"!**/_*/*.js",
"!**/_*.js"
]
}
}