-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "cookie",
"version": "1.0.0",
"description": "Graphics template for The Michigan Daily",
"main": "index.js",
"type": "module",
"author": "Naitian Zhou",
"license": "MIT",
"scripts": {
"watch:src": "nodemon --watch src/ -e '*' --watch config.json scripts/render.js",
"watch:template": "parcel build/index.html build/graphic/index.html",
"build:src": "node scripts/render.js",
"build:parcel:wrapper": "yarn run parcel build --no-cache --public-url './' build/index.html --out-dir dist/",
"build:parcel:graphic": "yarn run parcel build --no-cache --public-url './' build/graphic/index.html --out-dir dist/graphic/",
"build:template": "run-s build:parcel:wrapper build:parcel:graphic",
"build": "run-s build:src build:template",
"dev": "run-p watch:*"
},
"dependencies": {
"d3": "^7.0.0",
"luxon": "^2.0.2",
"pym.js": "^1.3.2",
"sink": "https://github.com/MichiganDaily/sink"
},
"devDependencies": {
"archieml": "^0.4.2",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"googleapis": "^84.0.0",
"html-entities": "^2.3.2",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.2",
"parcel-bundler": "^1.12.4",
"sass": "^1.32.0"
},
"browserslist": [
"since 2017-06"
]
}