forked from dpc-sdp/ripple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.83 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@dpc-sdp/ripple",
"description": "Ripple Monorepo for DPC Single Digital Presence sites.",
"homepage": "https://ripple.sdp.vic.gov.au",
"private": true,
"workspaces": {
"packages": [
"packages/components/**/*",
"packages/ripple-nuxt-tide",
"packages/ripple-nuxt-ui",
"packages/ripple-tide-search-api",
"packages/create-ripple-app",
"packages/ripple-test-tools",
"examples/*",
"src"
],
"nohoist": [
"src"
]
},
"scripts": {
"publish": "lerna publish",
"start:storybook": "cd src && yarn start",
"start:example": "cd examples/vic-gov-au/ && yarn run dev",
"start:build-example": "cd examples/vic-gov-au/ && nuxt build --modern=client && nuxt start --modern=client",
"test:e2e": "yarn test:e2e-example && yarn test:e2e-vic",
"test:e2e-vic": "cd examples/vic-gov-au/ && yarn test:e2e",
"test:e2e-example": "cd examples/basic-examples && yarn test:e2e",
"test:smoke": "yarn test:smoke-vic",
"test:smoke-vic": "cd examples/vic-gov-au/ && yarn test:smoke",
"test:smoke-example": "cd examples/vic-gov-au/ && yarn test:smoke",
"test:unit": "jest --colors",
"test:audit": "cd examples/vic-gov-au/ && yarn test:audit",
"test:report": "node ./packages/ripple-test-tools/scripts/cucumberconvertor.js ./test-results/cucumber",
"build:storybook": "cd src && yarn build-storybook",
"build:vic-gov-au": "cd examples/vic-gov-au && yarn run build --modern=client",
"lint": "sass-lint && yarn lint:es",
"lint:es": "eslint --ext .js,.vue . --max-warnings 0",
"lint:fix": "eslint --ext .js,.vue . --fix",
"bay:start": "docker-compose up -d",
"bay:rebuild-full": "docker-compose up -d --build --force-recreate",
"bay:restart": "docker-compose restart",
"bay:stop": "docker-compose stop",
"bay:destroy": "docker-compose down -v",
"bay:logs": "docker-compose logs",
"bay:cli": "docker exec -i $(docker-compose ps -q app)",
"bay:pull": "docker image ls --format \"{{.Repository}}:{{.Tag}}\" | grep amazeeio | grep -v none | xargs -n1 docker pull | cat",
"docs:storybook": "cd src/ && yarn run docs",
"new-component:storybook": "cd src/ && yarn run new-component",
"package-dependencies:storybook": "cd src/ && yarn run package-dependencies",
"postinstall": "patch-package"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/eslint-parser": "^7.12.13",
"@babel/eslint-plugin": "^7.12.13",
"@babel/helper-call-delegate": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@vue/test-utils": "^1.0.0-beta.29",
"axe-core": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-preset-vue": "^2.0.2",
"core-js": "^3.8.1",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-junit": "^1.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.5.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-canvas-mock": "^2.1.0",
"jest-junit": "^12.0.0",
"lerna": "^3.22.1",
"markdown-loader-jest": "^0.1.1",
"mockdate": "^2.0.3",
"patch-package": "^6.4.7",
"sass-lint": "^1.12.1",
"start-server-and-test": "^1.11.6",
"vue-jest": "^3.0.4",
"vuex-mock-store": "^0.0.8"
},
"browserslist": [
"> 1%",
"IE 11",
"last 2 versions",
"not ie <= 8"
],
"husky": {
"hooks": {
"pre-push": "yarn run lint && yarn run test:unit"
}
}
}