-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "dependency-viz",
"version": "1.0.0",
"main": "index.js",
"author": "Tom Fletcher",
"license": "UNLICENSED",
"scripts": {
"build-prod": "rollup --config rollup-prod.config.js",
"build": "rollup --config --sourcemap",
"watch": "rollup --config --watch --sourcemap",
"serve": "node server/server.js",
"livereload": "livereload 'site/dist/*,site/index.html' -d",
"dev": "npm-run-all --parallel serve livereload watch"
},
"dependencies": {
"compression": "^1.6.2",
"d3": "^4.8.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"jquery": "^3.2.1",
"livereload": "^0.6.2",
"lodash": "^4.17.4",
"qwest": "^4.4.5",
"request": "^2.81.0"
},
"devDependencies": {
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015-rollup": "^3.0.0",
"http-server": "^0.9.0",
"npm-run-all": "^4.0.2",
"postcss-cssnext": "^2.10.0",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.1.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^2.1.1",
"rollup-plugin-postcss": "^0.2.0",
"rollup-plugin-postcss-export": "^0.3.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}