-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.77 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.77 KB
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
{
"name": "boscoin-congres-voting-server",
"version": "0.1.0",
"description": "BOScoin Congres Voting Server",
"private": true,
"scripts": {
"start": "node ./bin/www",
"task": "node ./bin/task",
"test": "mocha --exit --recursive -t 20000 $(find . -name '*.test.js' -not -path './node_modules/*')",
"lint": "eslint .",
"dev": "concurrently 'npm run front:watch' 'nodemon npm start | pino-pretty'",
"migrate": "sequelize db:migrate",
"prefront:build": "rimraf public/dist",
"front:build": "webpack --config webpack.config.js",
"prefront:watch": "rimraf public/dist",
"front:watch": "webpack -w --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosnet/congress-voting-desktop.git"
},
"author": "BlockchainOS",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/bosnet/congress-voting-desktop/issues"
},
"homepage": "https://github.com/bosnet/congress-voting-desktop#readme",
"dependencies": {
"@sentry/node": "^4.5.2",
"aws-sdk": "^2.814.0",
"base-x": "^3.0.5",
"camelcase": "^5.0.0",
"connect-session-sequelize": "^6.0.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"decamelize": "^2.0.0",
"enumify": "^1.0.4",
"express": "~4.16.0",
"express-session": "^1.15.6",
"floating-form-labels": "^1.2.4",
"got": "^9.6.0",
"http-errors": "~1.7.1",
"i18next": "^14.0.1",
"i18next-express-middleware": "^1.7.1",
"i18next-node-fs-backend": "^2.1.1",
"jquery": "^3.3.1",
"js-yaml": "^3.12.1",
"moment": "^2.23.0",
"morgan": "~1.9.0",
"newrelic": "^5.0.0",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"pino": "^5.10.7",
"pug": "^2.0.3",
"random-word": "^2.0.0",
"rlp": "^2.2.2",
"sebakjs-util": "^0.1.1",
"sequelize": "^4.42.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^4.1.0",
"crypto-random-string": "^1.0.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.1",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"pino-pretty": "^2.5.0",
"postcss": "^7.0.14",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"sequelize-cli": "^5.4.0",
"supertest": "^3.4.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"postcss": {
"plugins": {
"postcss-cssnext": {
"browsers": [
"last 2 versions",
"> 5%"
]
},
"cssnano": {}
}
}
}