-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "media-tic",
"version": "0.0.1",
"description": "An interface made with React for the MediaTIC project from the LIIT at the UNED Costa Rica.",
"main": "./src/index.ts",
"scripts": {
"dev": "rimraf build && cross-env PARCEL_AUTOINSTALL=false parcel ./public/index.html -d build --open",
"build:prod": "rimraf dist && cross-env PARCEL_AUTOINSTALL=false parcel build ./public/index.html --no-source-maps",
"deploy:aws": "aws s3 sync dist/ s3://tendenciasdemo-app"
},
"alias": {
"react": "preact-compat",
"react-dom": "preact-compat"
},
"author": "Kenneth P. Barquero <https://github.com/kenpb/>",
"private": true,
"engines": {
"node": ">=8"
},
"dependencies": {
"d3": "^5.9.7",
"file-saver": "^2.0.2",
"parcel-plugin-inliner": "^1.0.10",
"preact": "8.3.1",
"preact-compat": "3.18.4",
"query-string": "^6.8.1",
"react-router-dom": "4.3.1",
"redux-zero": "4.14.0"
},
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/file-saver": "^2.0.1",
"@types/node": "^12.6.2",
"autoprefixer": "^9.6.1",
"cross-env": "5.2.0",
"mock-json-server": "^1.3.4",
"parcel-bundler": "1.12.3",
"parcel-plugin-alias": "git+https://github.com/tw00/parcel-plugin-alias.git",
"postcss-modules": "^1.4.1",
"rimraf": "^2.6.3",
"sass": "1.22.4",
"typescript": "3.5.1"
}
}