-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
72 lines (72 loc) · 3.27 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
69
70
71
72
{
"name": "druxt.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/druxt/druxt.js"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn clean && siroc build",
"build:docs": "./packages/docgen/bin/druxt-docgen.js",
"bundlewatch": "bundlewatch --config bundlewatch.config.js",
"changeset": "changeset",
"clean": "yarn clean:dist && yarn clean:docs && yarn clean:pack",
"clean:docs": "rimraf docs/content/api || true",
"clean:dist": "rimraf packages/*/dist packages/*/nuxt || true",
"clean:pack": "rimraf packages/*/package.tgz || true",
"dev": "siroc dev",
"docs:dev": "cd docs/nuxt && yarn && yarn dev",
"docs:test": "start-server-and-test docs:dev http://localhost:3000 'npx cypress run --project docs/nuxt/test'",
"docs:test:open": "start-server-and-test docs:dev http://localhost:3000 'npx cypress open --project docs/nuxt/test'",
"example:druxt-site": "cd examples/druxt-site && yarn && yarn dev",
"example:druxt-site:storybook": "cd examples/druxt-site && yarn && yarn storybook",
"example:druxt-site:storybook:test": "start-server-and-test 'yarn example:druxt-site:storybook --port 3000' http://localhost:3000 'npx cypress run --project examples/druxt-site/test --spec \"examples/druxt-site/test/cypress/e2e/storybook/*.cy.js\"'",
"example:druxt-site:storybook:test:open": "start-server-and-test 'yarn example:druxt-site:storybook --port 3000' http://localhost:3000 'npx cypress open --project examples/druxt-site/test'",
"example:druxt-site:test": "start-server-and-test 'yarn example:druxt-site' http://localhost:3000 'npx cypress run --project examples/druxt-site/test --spec \"examples/druxt-site/test/cypress/e2e/nuxt/*.cy.j\"s'",
"example:druxt-site:test:open": "start-server-and-test 'yarn example:druxt-site' http://localhost:3000 'npx cypress open --project examples/druxt-site/test'",
"lint": "eslint --ext .js,.vue packages/*/src",
"lint:commit": "commitlint",
"lint:renovate": "renovate-config-validator",
"package": "siroc run yarn pack --workspaces",
"postinstall": "husky install",
"test": "yarn test:unit && yarn test:e2e",
"test:e2e": "yarn example:druxt-site:test && yarn example:druxt-site:storybook:test",
"test:unit": "NODE_OPTIONS=--unhandled-rejections=warn jest",
"version": "changeset version"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "16.0",
"@commitlint/config-conventional": "16.0",
"@vue/test-utils": "1.3.6",
"babel-core": "7.0.0-bridge.0",
"bundlewatch": "0.4.0",
"codecov": "^3.8.3",
"cypress": "^13.14.1",
"esbuild": "0.23.1",
"esbuild-jest": "0.5.0",
"eslint": "7.32.0",
"eslint-junit": "1.0.1",
"eslint-plugin-nuxt": "2.0.0",
"eslint-plugin-vue": "7.20.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "16.0.0",
"jest-mock-axios": "4.7.3",
"regenerator-runtime": "0.14.1",
"renovate": "32.0.2",
"rimraf": "6.0.1",
"siroc": "0.16.0",
"start-server-and-test": "^2.0.5",
"vue": "2.7.16",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.7.16"
},
"packageManager": "yarn@3.8.5"
}