-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
101 lines (101 loc) · 2.76 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
96
97
98
99
100
101
{
"name": "philly-ward-leaders",
"description": "Shining a spotlight on the powerful players behind Philadelphia elections.",
"version": "1.0.0",
"author": "timwis <tim@timwis.com>",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --host 0.0.0.0 --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "jest --testPathIgnorePatterns ./e2e",
"lint": "standard --plugin html '**/*.{js,vue}'",
"e2e": "playwright test",
"e2e-ci": "playwright install --with-deps && playwright test",
"serve-http": "http-server ./public -p 8080"
},
"dependencies": {
"@mapbox/leaflet-pip": "^1.1.0",
"axios": "^0.16.2",
"buefy": "^0.5.2",
"bulma": "^0.5.1",
"contentful": "^4.6.1",
"leaflet": "^1.2.0",
"leaflet-geocoder-mapzen": "^1.9.4",
"marked": "^0.3.6",
"nanoid": "^0.2.1",
"ordinal": "^1.0.2",
"query-string": "^5.0.0",
"snapsvg": "^0.5.1",
"vue": "^2.6.14",
"vue-bulma-tooltip": "^1.0.4",
"vue-directive-tooltip": "^1.4.0",
"vue-router": "^3.6.5",
"vue2-leaflet": "0.0.55",
"vuex": "^3.6.2"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@vue/test-utils": "^1.3.0",
"autoprefixer": "^9.8.8",
"babel-core": "^6.0.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.1",
"cross-env": "^3.0.0",
"css-loader": "^1.0.1",
"eslint-plugin-html": "^3.2.2",
"file-loader": "^1.1.11",
"http-server": "^14.1.1",
"imports-loader": "^0.7.1",
"jest": "^21.2.1",
"jest-serializer-vue": "^0.2.0",
"jest-vue": "^0.7.0",
"node-sass": "^4.14.1",
"postcss-loader": "^4.3.0",
"prettier": "1.12.1",
"sass-loader": "^7.3.1",
"standard": "^10.0.3",
"vue-loader": "^14.2.2",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/tests/app.spec.js"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>node_modules/jest-vue",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"mapCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,vue}"
]
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"jest",
"test",
"beforeEach",
"FormData"
]
}
}