This repository has been archived by the owner on Mar 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 2.15 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
{
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"dependencies": {
"@gridsome/source-graphql": "^0.1.0",
"gridsome": "^0.7.11"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@vue/cli-plugin-unit-jest": "^4.1.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2"
},
"jest-junit": {
"outputDirectory": "./test-reports",
"outputName": "unit-test-report.xml"
},
"name": "consumer-ui",
"private": true,
"scripts": {
"build": "gridsome build",
"cypress:e2e": "wait-on http://localhost:4000 && cross-env CYPRESS_baseUrl=http://localhost:4000/# cypress run --env configFile=e2e",
"cypress:e2e:ci": "cross-env CYPRESS_baseUrl=http://admin-ui:4000/# cypress run --env configFile=e2e",
"cypress:integration": "wait-on http://localhost:4000 && cross-env CYPRESS_baseUrl=http://localhost:4000/# cypress run --env configFile=integration",
"cypress:integration:ci": "cross-env CYPRESS_baseUrl=http://admin-ui:4000/# cypress run --env configFile=integration",
"cypress:open": "cross-env CYPRESS_baseUrl=http://localhost:4000/# cypress open",
"cypress:open:dev": "cross-env CYPRESS_baseUrl=http://localhost:4000/# NODE_ENV=development cypress open",
"explore": "gridsome explore",
"lint": "eslint --ext .js,.vue stories",
"start": "gridsome develop",
"start:dev": "gridsome develop",
"start:e2e": "concurrently \"yarn cypress:e2e\" --kill-others \"yarn start\" --success first",
"start:integration": "concurrently \"yarn cypress:integration\" --kill-others \"yarn start\" --success first",
"start:integration:dev": "concurrently \"yarn cypress:integration:dev\" --kill-others \"yarn start:dev\" --success first",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"test:unit": "jest --updateSnapshot",
"test:unit:ci": "jest --updateSnapshot --ci --reporters=default --reporters=jest-junit",
"test:unit:coverage": "jest --coverage",
"test:unit:ui": "majestic --port 4001",
"test:unit:watch": "jest --watch",
"test:unit:watchAll": "jest --watchAll"
},
"version": "0.0.1"
}