-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "elections",
"version": "1.0.0",
"description": "This tool allows you to simulate elections. Place candidates and voters on a political coordinate system, and compare different voting systems to get different results.",
"main": "index.js",
"directories": {
"doc": "doc"
},
"devDependencies": {
"eslint": "^7.32.0",
"gh-pages": "^6.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development npx webpack-dev-server --config webpack.config.js",
"format": "npx eslint --fix js",
"build": "webpack --mode=development --config webpack.config.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frcroth/elections.git"
},
"license": "MIT",
"author": "frcroth",
"bugs": {
"url": "https://github.com/frcroth/elections/issues"
},
"homepage": "https://github.com/frcroth/elections#readme",
"dependencies": {
"chart.js": "^4.4.1",
"css-loader": "^6.10.0",
"hast-util-to-html": "^9.0.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.8.0",
"parliament-svg": "^3.0.0"
}
}