forked from kieran/vaxme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "vaxme",
"version": "1.1.0",
"description": "strategic voting calculator",
"repository": "github:kieran/vaxme",
"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 ./index.html",
"api": "node ./server/index.js",
"api_dev": "nodemon --watch data --watch ./server ./server/index.coffee",
"up_api": "up start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"coffeescript": "^2.5.1",
"dotenv": "^8.2.0",
"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.14.0",
"react-dom": "^16.13.1",
"react-icons": "^2.2.7",
"react-share": "^3.0.1",
"remarkable": "^2.0.1",
"sass": "^1.32.8",
"underscore-es": "^1.9.8"
},
"devDependencies": {
"mem": ">=4.0.0"
}
}