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
|
{
"name": "Puszcza",
"version": "1.0.0",
"description": "Strona 19 PDH Puszcza",
"author": "Patryk Niedźwiedziński",
"private": true,
"scripts": {
"dev": "nuxt",
"prebuild": "./scripts/prebuild.sh",
"build": "nuxt generate",
"postbuild": "./scripts/postbuild.sh",
"start": "nuxt start",
"test": "jest",
"storybook": "start-storybook -p 6006 -s static",
"build-storybook": "build-storybook"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^3.0.0-0",
"axios": "^0.19.0",
"esm": "^3.2.25",
"front-matter": "^3.0.2",
"jsdom": "^15.1.1",
"kronikarz": "^1.1.0",
"markdown-it": "^10.0.0",
"nuxt": "^2.0.0",
"raw-loader": "^3.1.0",
"tough-cookie": "^3.0.1",
"vue-tasty-burgers": "^1.1.7"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-links": "^5.2.4",
"@storybook/addon-storyshots": "^5.2.4",
"@storybook/addons": "^5.2.4",
"@storybook/vue": "^5.2.4",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-preset-vue": "^2.0.2",
"coveralls": "^3.0.6",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"jest-serializer-vue": "^2.0.2",
"jest-vue-preprocessor": "^1.7.0",
"prettier": "^1.16.4",
"vue-jest": "^4.0.0-0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
]
}
}
|