-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
49
50
51
52
53
54
{
"name": "mixed_beverages",
"version": "0.0.0",
"description": "",
"scripts": {
"build:css": "sass mixed_beverages/static_src/js/app.scss:mixed_beverages/static/app.css",
"build:js": "rollup -c",
"build": "npm run build:css && npm run build:js",
"watch:css": "sass mixed_beverages/static_src/js/app.scss:mixed_beverages/static/app.css --embed-source-map --watch",
"watch:js": "rollup -c -m inline --watch",
"lint": "eslint .",
"django": "./manage.py runserver",
"dev": "concurrently --kill-others 'npm:watch:*' 'npm:django'"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/texas/tx_mixed_beverages.git"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"colorbrewer": "^1.5.2",
"concurrently": "^7.0.0",
"cookies-js": "^1.2.1",
"eslint": "^8.10.0",
"jquery": "^3.6.0",
"leaflet": "^1.7.1",
"leaflet-hash": "^0.2.1",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"rollup": "^2.68.0",
"sass": "^1.49.9"
},
"prettier": {
"printWidth": 100,
"semi": false
},
"dependencies": {
"@condenast/quick-bus": "^0.2.0",
"d3-array": "^3.1.1",
"d3-axis": "^3.0.0",
"d3-color": "^3.0.1",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-time-format": "^4.1.0"
}
}