-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "teamnexters.com",
"version": "21.1.1",
"description": "",
"main": "nuxt.config.js",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "node .script/generate",
"generate:vercel": "node .script/content && node .script/generate",
"post-update": "yarn upgrade --latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcauto/teamnexters.com.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcauto/teamnexters.com/issues"
},
"homepage": "https://github.com/mcauto/teamnexters.com#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/svg": "^0.3.0",
"babel-eslint": "^10.1.0",
"cross-var": "1.1.0",
"dotenv-cli": "3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.18.0",
"husky": "^4.2.5",
"json-to-scss": "^1.6.2",
"next-standard-version": "^2.1.3",
"prettier": "^2.4.1",
"sass": "^1.42.1",
"sass-loader": "10",
"standard-version": "^9.1.0"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/composition-api": "^0.29.2",
"dotenv": "^10.0.0",
"nuxt": "^2.15.8",
"nuxt-lazy-load": "^1.2.9",
"nuxt-property-decorator": "^2.9.1",
"python-shell": "^3.0.1",
"vue-mq": "^1.0.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"skipCI": false,
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run build"
}
}
}