-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.26 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
{
"name": "vue-webpack-test",
"version": "1.0.0",
"main": "src/index.js",
"author": "Lana Schuster <lanaschuster1@gmail.com>",
"license": "MIT",
"scripts": {
"postinstall": "husky install && husky add .husky/pre-commit \"yarn lint-staged\"",
"test": "jest --passWithNoTests --no-cache",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@faker-js/faker": "^7.5.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.12",
"@vue/test-utils": "^2.0.2",
"@vue/vue3-jest": "^29.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^29.0.3",
"babel-loader": "^7.1.5",
"bulma": "^0.9.4",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-vue": "^9.4.0",
"git-commit-msg-linter": "^4.1.3",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.3",
"node-sass": "^7.0.3",
"sass": "^1.62.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"vue-loader": "^16.8.3",
"vue-style-loader": "^4.1.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@formkit/vue": "^0.16.5",
"axios": "^1.1.2",
"storybook-css-modules-preset": "^1.1.1",
"vue": "^3.2.39",
"vue-router": "4"
}
}