-
-
Notifications
You must be signed in to change notification settings - Fork 427
/
Copy pathpackage.json
35 lines (35 loc) · 997 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
34
35
{
"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,scss}\"",
"test": "ava --verbose",
"test:snapshot": "ava --verbose --update-snapshots",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nuxtjs/eslint-config": "^11.0.0",
"ava": "^4.3.3",
"eslint": "^8.24.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.1",
"lerna": "^5.5.4",
"postcss-html": "^1.5.0",
"stylelint": "^14.13.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^28.0.0"
},
"name": "create-nuxt-app"
}