-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.97 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
{
"name": "nuxt-app",
"description": "Example project generated using the project-scaffolder and the nuxt app plugin",
"license": "MIT",
"private": true,
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"repository": "travi-test/nuxt-app",
"bugs": "https://github.com/travi-test/nuxt-app/issues",
"homepage": "https://github.com/travi-test/nuxt-app#readme",
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"predeploy:netlify": "run-s build",
"deploy:netlify": "npx --package netlify-cli netlify deploy --dir=./dist//",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:js": "eslint . --cache",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"lint:sensitive": "ban",
"dev": "nuxt",
"build": "nuxt build",
"start": "node ./dist//index.js",
"export": "nuxt export",
"serve": "nuxt serve",
"clean": "rimraf ./dist/",
"prebuild": "run-s clean",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any jest --testPathPattern=src/.*\\.test\\.js$",
"lint:peer": "npm ls >/dev/null",
"prepare": "husky install"
},
"dependencies": {
"nuxt": "3.15.0"
},
"devDependencies": {
"@babel/register": "7.25.9",
"@nuxtjs/eslint-module": "4.1.0",
"@travi/any": "3.1.2",
"@travi/babel-preset": "3.0.136",
"@travi/eslint-config": "5.0.11",
"@travi/eslint-config-jest": "1.0.106",
"@vue/test-utils": "2.4.6",
"ban-sensitive-files": "1.10.7",
"c8": "10.1.3",
"commitlint-config-travi": "1.4.54",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-when": "3.7.0",
"lockfile-lint": "4.14.0",
"npm-run-all2": "7.0.2",
"remark-cli": "12.0.1",
"remark-preset-lint-travi": "6.0.6",
"remark-toc": "9.0.0",
"rimraf": "6.0.1"
}
}