forked from havban/test-minicommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "future2021",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"start": "http-server dist --port 8080",
"test": "jest --config jest.integration.config.js",
"test:watch": "jest --config jest.integration.config.js --watchAll",
"test:report": "npx nyc report --nycrc-path nyc.config.js"
},
"dependencies": {
"axios": "^0.21.4",
"core-js": "^3.6.5",
"register-service-worker": "^1.7.1",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@playwright/test": "^1.15.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/test-utils": "^1.0.3",
"axios-mock-adapter": "^1.20.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"eslint": "^6.7.2",
"eslint-plugin-jest-playwright": "^0.5.1",
"eslint-plugin-vue": "^6.2.2",
"expect-playwright": "^0.8.0",
"http-server": "^13.0.2",
"jest": "^27.2.1",
"jest-image-snapshot": "^4.5.1",
"jest-playwright-preset": "^1.7.0",
"nyc": "^15.1.0",
"playwright": "^1.15.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
}
}