This repository has been archived by the owner on Apr 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 3.01 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
86
87
88
89
90
91
92
93
94
95
{
"name": "patchwork",
"version": "1.0.0",
"description": "Fabric styleguide",
"author": "Alex Mendes",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "cross-env NODE_ENV=production nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "cross-env NODE_ENV=production nuxt generate",
"generate:gh-pages": "DEPLOY_ENV=GH_PAGES NODE_ENV=production nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"unit": "cross-env NODE_ENV=testing jest --coverage",
"unit:update": "cross-env NODE_ENV=testing jest -u",
"test": "npm run lint && npm run unit",
"test:update": "npm run unit:update",
"deploy:gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup"
},
"dependencies": {
"@nuxtjs/axios": "^5.0.0",
"@nuxtjs/markdownit": "^1.2.3",
"@nuxtjs/style-resources": "^0.1.1",
"change-case": "^3.0.2",
"dedent": "^0.7.0",
"express": "^4.16.3",
"http-status": "^1.3.1",
"js-beautify": "^1.8.9",
"markdown-loader-jest": "^0.1.1",
"moxios": "^0.4.0",
"nuxt": "^2.0.0",
"push-dir": "^0.4.1",
"twing": "^2.1.2",
"uuid": "^3.3.2",
"vue-codemirror": "^4.0.6",
"vue-scrollto": "^2.13.0",
"vue-template-compiler": "^2.5.21"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.2.1",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-vue": "^4.0.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"js-yaml": "^3.12.0",
"node-sass": "^4.11.0",
"nodemon": "^1.11.0",
"normalize.css": "^8.0.1",
"sass-loader": "^7.1.0",
"vue-jest": "^3.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif)$": "<rootDir>/tests/assetsTransformer.js",
"\\.(scss)$": "<rootDir>/tests/assetsTransformer.js",
"^~/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".*\\.(md)$": "<rootDir>/tests/contentTransformer.js"
},
"collectCoverageFrom": [
"components/**/*.vue",
"layouts/**/*.vue",
"modules/**/*.js",
"pages/**/*.vue",
"store/**/*.js"
],
"coverageDirectory": "<rootDir>/coverage",
"testRegex": "/tests/specs/.*(test|spec)\\.jsx?$",
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
}
}