-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.95 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.95 KB
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
{
"name": "kate_site",
"version": "1.0.0",
"description": "kate lab website",
"main": "_src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run-script clean:project && webpack --env config=dev --progress && concurrently \"webpack-dev-server --env config=dev\" \"bundle exec jekyll serve\" \"Rscript R/blogdown_serve.R\"",
"build": "npm run-script clean:project && Rscript R/blogdown_build.R; NODE_ENV=production webpack --env config=prod --progress --profile && JEKYLL_ENV=production bundle exec jekyll build --trace",
"build:deploy": "npm run-script clean:project && Rscript R/blogdown_build.R; NODE_ENV=production webpack --env config=prod --progress --profile && JEKYLL_ENV=production bundle exec jekyll build",
"deploy": "npm run-script clean:docs && npm run-script build:deploy && cp -r _site/ docs/ && cp -r assets docs && touch docs/.nojekyll && git add ./docs && git commit -m \"deploy site\" && git push",
"clean:docs": "rimraf ./docs",
"rimraf": "./node_modules/rimraf/bin.js",
"clean:project": "rimraf ./_site ./assets",
"install:R": "Rscript R/install_deps.R"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devbrainlab/lab_website.git"
},
"author": "jonny saunders",
"license": "ISC",
"bugs": {
"url": "https://github.com/devbrainlab/lab_website/issues"
},
"homepage": "https://github.com/devbrainlab/lab_website/#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@fancyapps/fancybox": "^3.5.7",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.1.0",
"bootstrap": "^4.6.2",
"browser-sync": "^3.0.4",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^6.7.3",
"cssnano": "^5.1.14",
"eslint": "^9.39.2",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^3.0.4",
"file-loader": "^5.1.0",
"fitty": "^2.3.2",
"fs": "0.0.1-security",
"gsap": "^3.5.1",
"image-trace-loader": "^1.0.2",
"imagemin-webpack-plugin": "^2.4.2",
"jquery": "^3.5.1",
"jquery-bridget": "^2.0.1",
"just-curves": "^0.2.0",
"kute.js": "^1.6.6",
"masonry-layout": "^4.2.2",
"mini-css-extract-plugin": "^2.7.2",
"oridomi": "^1.1.2",
"path-browserify": "^1.0.1",
"polymorph-js": "^1.0.2",
"popper.js": "^1.16.1",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-scss": "^4.0.6",
"potrace": "^2.1.8",
"rimraf": "^3.0.2",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"scrollmagic": "^2.0.7",
"serialize-javascript": "^3.1.0",
"style-loader": "^1.2.1",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.104.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.10.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"html-webpack-plugin": "^5.5.0"
}
}