forked from loomchild/sojourner-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.65 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": "sojourner",
"description": "FOSDEM conference planner, version web",
"version": "1.0.0",
"author": "Jarek Lipski <[email protected]>",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --hide-modules",
"start": "http-server dist",
"dev": "NODE_ENV=development webpack-dev-server --hot --disable-host-check",
"lint": "eslint --ext .js,.vue .",
"test": "NODE_ENV=test karma start --single-run",
"test-e2e": "NODE_ENV=test nightwatch --env chrome"
},
"dependencies": {
"@sentry/browser": "^5.4.0",
"@sentry/integrations": "^5.4.1",
"firebase": "^5.11.1",
"git-revision-webpack-plugin": "^3.0.3",
"localforage": "^1.7.3",
"lodash": "^4.17.11",
"material-design-icons-iconfont": "^5.0.1",
"memoizee": "^0.4.14",
"moment": "^2.24.0",
"pouchdb": "^7.0.0",
"thenby": "^1.3.0",
"typeface-rubik": "0.0.72",
"vue": "^2.6.10",
"vue-meta": "^1.6.0",
"vue-router": "^2.3.3",
"vue-test-utils": "^1.0.0-beta.11",
"vuetify": "^1.3.16",
"vuex": "^3.1.1",
"workbox-window": "^4.3.1",
"xmltojson": "^1.3.5"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-datetime": "^1.5.0",
"chromedriver": "74.0.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.25.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-html": "^3.2.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.10.0",
"karma": "~1.5.0",
"karma-chai-datetime": "^0.1.1",
"karma-chai-string": "0.0.7",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.3.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^3.0.5",
"mini-css-extract-plugin": "^0.7.0",
"mocha": "^3.2.0",
"nightwatch": "^1.1.0",
"puppeteer": "~1.13.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"url-loader": "^1.1.2",
"vue-loader": "^15.7.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"workbox-webpack-plugin": "^4.3.1"
}
}