-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 932 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 932 Bytes
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
{
"name": "dvs-2021",
"version": "1.0.0",
"description": "Data Vis Society Competition Entry 2021",
"repository": "https://github.com/two-n/dvs-2021.git",
"author": "miasza < mia@two-n.com >",
"license": "MIT",
"private": true,
"devDependencies": {
"@parcel/transformer-image": "^2.0.0-rc.0",
"@parcel/transformer-sass": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.21.1",
"parcel": "^2.0.0-nightly.286",
"sass": "^1.26.8"
},
"scripts": {
"dev": "parcel index.html",
"prebuild": "rm -rf dist",
"build": "parcel build index.html",
"prototypes-build": "yarn prebuild && parcel build index.html --public-url http://prototypes.two-n.com/dvs-pay-explorer",
"deploy": "rsync -avz --delete ./dist/ twoninc@two-n.com:/home/twoninc/prototypes.two-n.com/dvs-pay-explorer"
},
"dependencies": {
"d3": "^7.3.0"
}
}