forked from nuxt/create-nuxt-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 907 Bytes
/
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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"homepage": "https://github.com/nuxt/create-nuxt-app#readme",
"repository": {
"url": "https://github.com/nuxt/create-nuxt-app.git",
"type": "git"
},
"scripts": {
"lint": "yarn lint:js && yarn lint:style",
"lint:js": "eslint --ext \".js,.mjs,.vue\" .",
"lint:style": "stylelint \"**/*.{vue,css}\"",
"test": "ava --verbose",
"test:snapshot": "ava --verbose --update-snapshots",
"postinstall": "husky install"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@nuxtjs/eslint-config": "^5.0.0",
"ava": "^3.15.0",
"eslint": "^7.21.0",
"husky": "^5.1.3",
"lerna": "^4.0.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0"
},
"name": "create-nuxt-app"
}