-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.97 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "liquido-vue-frontend",
"version": "35.1.0",
"description": "Web frontend for my Liquid Democracy app implemented in NodeJS with Vue",
"keywords": [
"Liquid Democracy",
"eVoting"
],
"homepage": "https://github.com/Doogiemuc/liquido-vue-frontend",
"license": "CC-BY-NC-4.0",
"author": "Robert Rackl",
"private": false,
"scripts": {
"dev": "node build/dev-server.js",
"test": "cross-env NODE_ENV=testing PORT=3005 node build/dev-server.js",
"cypress": "cypress open",
"build": "node build/build.js",
"smoke": "babel-node test/jasmine/runJasmineTestsWithNode.js",
"unit": "karma start test/unit/karma.conf.js --single-run",
"test_iron_aws": "./node_modules/.bin/nightwatch --config ./test/e2e_prod/nightwatch.conf.js --env iron_aws",
"test_chrome_local": "./node_modules/.bin/nightwatch --config ./test/e2e_prod/nightwatch.conf.js --env chrome_local",
"test_iron_local": "./node_modules/.bin/nightwatch --config ./test/e2e_prod/nightwatch.conf.js --env iron_local",
"test_e2e_with_devServer": "node test/e2e/runner.js",
"test_all": "npm run unit && npm run e2e_with_devServer",
"happyCase": "cypress run --spec ./cypress/integration/liquidoTests/liquidoHappyCase.js",
"test_prod": "cypress run --env backendBaseURL=http://ec2-34-255-196-76.eu-west-1.compute.amazonaws.com:80/liquido/v2 --config baseUrl=http://ec2-34-255-196-76.eu-west-1.compute.amazonaws.com --spec ./cypress/integration/liquidoTests/liquidoHappyCase.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Doogiemuc/liquido-vue-frontend.git"
},
"dependencies": {
"appear": "^1.0.1",
"axios": "^0.19.0",
"babel-runtime": "^6.26.0",
"bcrypt-nodejs": "^0.0.3",
"chalk": "^1.1.3",
"crypto-js": "^3.1.9-1",
"dragula": "^3.7.2",
"izitoast": "^1.4.0",
"lodash": "^4.17.15",
"loglevel": "^1.6.1",
"moment": "^2.22.2",
"qs": "^6.6.0",
"tinymce": "^4.8.3",
"url-template": "^2.0.8",
"vue": "^2.5.17",
"vue-router": "^2.8.1",
"vuelidate": "^0.7.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.5.0",
"cross-env": "^3.2.4",
"cross-spawn": "^4.0.2",
"css-loader": "^0.23.0",
"cypress": "^4.0.2",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"function-bind": "^1.1.1",
"html-dnd": "^1.2.0",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.19.1",
"inject-loader": "^2.0.1",
"isparta-loader": "^2.0.0",
"jasmine": "^2.99.0",
"jasmine-ajax": "^3.4.0",
"jasmine-console-reporter": "^1.2.8",
"jasmine-core": "^2.99.1",
"jasmine-expect": "^3.8.4",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lolex": "^1.6.0",
"mocha": "^3.5.3",
"nightwatch": "^0.9.21",
"opn": "^4.0.2",
"ora": "^0.3.0",
"semver": "^5.5.1",
"shelljs": "^0.7.8",
"sinon": "^1.17.3",
"sinon-chai": "^2.14.0",
"url-loader": "^0.5.9",
"vue-loader": "^10.3.0",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^1.15.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.24.2",
"webpack-merge": "^0.14.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
}
}