-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "data-viz-d3",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:shreshthmohan/data-viz-d3.git",
"author": "Shreshth Mohan <[email protected]>",
"license": "MIT",
"scripts": {
"rollup": "rollup -c",
"build": "yarn css:build && ./dist.sh && rollup -c && pwd && ls && ls -altr dist",
"css:build": "cross-env NODE_ENV=production postcss src/scss/styles.css -o src/css/styles.css",
"css:watch": "cross-env NODE_ENV=development postcss src/scss/styles.css -o src/css/styles.css --watch"
},
"dependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.4.2",
"canvg": "^4.0.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.15",
"d3": "^7.3.0",
"d3-delaunay": "^6.0.2",
"d3-sankey": "^0.12.3",
"eslint": "^8.6.0",
"lodash-es": "^4.17.21",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"rollup": "^2.63.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.0.12"
},
"devDependencies": {
"papaparse": "^5.3.1"
}
}