-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.46 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
{
"name": "cool-ux-tools",
"version": "0.1.0",
"description": "Cool UX Tools is a curated list of (obviously) cool resources and tools for developers, UX researchers, designers and project managers.",
"author": "Adrià Fontcuberta <[email protected]>",
"private": true,
"scripts": {
"dev": "nuxt",
"test": "jest",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"predeploy": "npm run lint",
"deploy": "nuxt generate && firebase deploy"
},
"dependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/pwa": "^2.0.8",
"normandy-css": "^1.0.2",
"nuxt": "^1.4.1",
"nuxt-babel": "^0.1.2",
"nuxt-sass-resources-loader": "^2.0.2",
"vue-clazy-load": "^0.4.2"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.16",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.0.0",
"intersection-observer": "^0.5.0",
"jest": "^22.4.3",
"jest-serializer-html": "^5.0.0",
"jest-transform-stub": "^1.0.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3",
"vue-jest": "^2.6.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@[/](.+)": "<rootDir>/$1",
"^~[/](.+)": "<rootDir>/$1",
"^components[/](.+)": "<rootDir>/components/$1",
"^vue$": "vue/dist/vue.common.js"
},
"snapshotSerializers": [
"jest-serializer-html"
],
"collectCoverageFrom": [
"frontend/**/*.{js,jsx}"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"node_modules/(?!vue-keyboard)"
],
"globals": {
"vue-jest": {
"resources": {
"scss": [
"./frontend/assets/css/autoload.scss"
]
}
}
}
}
}