-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "starter",
"version": "4.1.2",
"description": "Starter template for Pudding stories",
"author": "Russell Goldenberg",
"license": "MIT",
"engines": {
"node": "12.18.3"
},
"dependencies": {
"chosen-js": "^1.8.7",
"d3-tip": "^0.9.1",
"intersection-observer": "^0.11.0",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1",
"jquery.marker-animation": "^1.4.30",
"lodash.debounce": "^4.0.8",
"nouislider": "14.2.0",
"scrollama": "^2.2.1"
},
"devDependencies": {
"archieml": "0.4.2",
"autoprefixer-stylus": "1.0.0",
"babel-eslint": "10.1.0",
"cli-error-notifier": "2.1.0",
"cross-env": "^7.0.2",
"d3-dsv": "1.2.0",
"eslint": "7.6.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"handlebars": "4.7.6",
"imagemin": "7.0.1",
"imagemin-mozjpeg": "9.0.0",
"imagemin-pngquant": "9.0.0",
"inline-source": "7.2.0",
"light-server": "2.8.0",
"npm-run-all": "4.1.5",
"onchange": "7.0.2",
"prettier": "2.0.5",
"promise-polyfill": "8.1.3",
"replace-in-file": "6.1.0",
"request": "2.88.2",
"rimraf": "3.0.2",
"stylus": "0.54.8",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"whatwg-fetch": "3.2.0"
},
"main": "scripts/main.js",
"scripts": {
"depudding": "node ./scripts/depudding.js",
"doc": "node ./scripts/fetch-doc.js",
"sheet": "node ./scripts/fetch-sheet.js",
"build": "run-s build:assets build:css build:js build:html",
"prebuild": "rm -rf .tmp .cache dev && mkdir .tmp .cache dev",
"build:assets": "cp -r src/assets dev",
"build:css": "onerror \"stylus src/css/config.styl -u autoprefixer-stylus -o dev/bundle.css -m\" -t \"Build Error in CSS\" -m \"See terminal for details\" -s Basso",
"build:js": "webpack --mode='development' --config webpack.config.js",
"build:html": "onerror \"node ./scripts/html.js\" -t \"Build Error in HTML\" -m \"See terminal for details\" -s Basso",
"protect": "npm run deploy && npx staticrypt dist/index.html changethispassword -o dist/index.html",
"deploy": "cross-env NODE_ENV=dist run-s deploy:*",
"predeploy": "rm -rf .tmp .cache dist && mkdir .tmp .cache dist",
"deploy:assets": "cp -r src/assets dist && node ./scripts/image-min.js",
"deploy:css": "stylus src/css/config.styl -u autoprefixer-stylus -o dist/bundle.css -c",
"deploy:js": "webpack --env='production' --mode='production' --config webpack.config.js",
"deploy:html": "node ./scripts/html.js",
"watch:assets": "onchange -k \"src/assets/**/*\" -- run-s build:assets",
"watch:html": "onchange \"src/html/**/*\" \"data/*/\" -- run-s build:html",
"watch:css": "stylus src/css/config.styl -u autoprefixer-stylus -o dev/bundle.css -m -w",
"watch:js": "onchange -k \"src/js/**/*\" -- run-s build:js",
"serve": "light-server -q -o -s dev -p 4000 -w \"dev/*.css # # reloadcss\" -w \"dev/*.js # #\" -w \"dev/*.html # #\" -w \"dev/assets/**/* # #\"",
"dev": "run-p serve watch:*",
"start": "cross-env NODE_ENV=dev run-s build dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polygraph-cool/starter.git"
},
"keywords": [
"pudding",
"starter",
"template"
],
"bugs": {
"url": "https://github.com/polygraph-cool/starter/issues"
},
"homepage": "https://github.com/polygraph-cool/starter#readme",
"browserslist": "last 3 versions"
}