-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "votewell",
"version": "1.1.0",
"description": "strategic voting calculator",
"repository": "github:kieran/votewell",
"author": "Kieran Huggins",
"license": "ISC",
"scripts": {
"start": "npm-run-all -p serve api",
"serve": "npx parcel serve ./index.html",
"build": "npm run dist",
"dist": "npx parcel build --no-cache --public-url https://votewell.ca ./index.html",
"api": "node ./server/index.js",
"api_dev": "nodemon --watch election --watch ./server ./server/index.coffee",
"up_api": "up start",
"test": "echo \"Error: no test specified\" && exit 1",
"update_polls": "npx coffee election/update_polls.coffee"
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-react": "^7.10.4",
"@koa/cors": "^2.2.3",
"@sentry/browser": "^5.19.2",
"@sentry/node": "^5.19.2",
"@svgr/parcel-plugin-svgr": "^4.3.3",
"@turf/tag": "^5.1.5",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.10",
"classnames": "^2.2.6",
"coffeescript": "^2.5.1",
"dotenv": "^8.2.0",
"i18next": "^17.3.1",
"koa": "^2.13.0",
"koa-router": "^7.4.0",
"mongodb": "^3.5.9",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^10.13.2",
"react-icons": "^2.2.7",
"react-select": "^1.3.0",
"react-share": "^3.0.1",
"sass": "^1.32.8",
"underscore-es": "^1.9.8"
},
"devDependencies": {
"mem": ">=4.0.0",
"underscore": "^1.13.7"
}
}