-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.86 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "pyribs.org",
"version": "0.0.0",
"description": "pyribs Website",
"scripts": {
"clean": "rimraf ./build ./src/_compiled-assets/",
"dev:webpack": "webpack --config webpack.config.dev.js",
"dev:eleventy": "ELEVENTY_ENV=development eleventy --serve",
"dev": "npm-run-all clean --parallel dev:webpack dev:eleventy",
"start": "npm run dev",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build": "npm-run-all clean build:webpack build:eleventy",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"linkinator": "linkinator ./build --recurse --retry --config linkinator.config.json",
"test": "npm run linkinator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icaros-usc/pyribs.org.git"
},
"author": "Bryon Tjanaka",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "1.0.0",
"@11ty/eleventy-plugin-directory-output": "1.0.1",
"@11ty/eleventy-plugin-rss": "1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "3.0.6",
"@babel/core": "7.12.0",
"@babel/plugin-transform-react-jsx": "7.16.5",
"@babel/preset-env": "7.12.0",
"@iktakahiro/markdown-it-katex": "4.0.1",
"@tailwindcss/typography": "0.5.2",
"autoprefixer": "10.2.4",
"babel-loader": "8.1.0",
"cheerio": "1.0.0-rc.10",
"citation-js": "0.5.4",
"clipboard": "2.0.8",
"core-js": "3.6.5",
"css-loader": "6.5.1",
"css-minimizer-webpack-plugin": "5.0.1",
"html-minifier": "4.0.0",
"jquery": "3.5.1",
"js-yaml": "4.1.0",
"markdown-it": "12.3.2",
"markdown-it-anchor": "6.0.1",
"markdown-it-center-text": "1.0.4",
"markdown-it-implicit-figures": "0.10.0",
"markdown-it-toc-done-right": "4.2.0",
"md5-file": "5.0.0",
"mini-css-extract-plugin": "2.4.5",
"npm-run-all": "4.1.5",
"popper.js": "1.16.1",
"postcss": "8.4.5",
"postcss-import": "14.0.2",
"postcss-loader": "6.2.1",
"preact": "10.6.4",
"qrcode": "1.5.0",
"react-markdown": "8.0.0",
"regenerator-runtime": "0.13.9",
"rimraf": "3.0.2",
"sass": "1.66.1",
"sass-loader": "13.3.2",
"sharp": "0.29.3",
"tailwindcss": "3.0.11",
"terser-webpack-plugin": "4.1.0",
"to-ico": "1.1.5",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-merge": "5.9.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.16.5",
"@trivago/prettier-plugin-sort-imports": "3.1.1",
"eslint": "8.5.0",
"eslint-config-google": "0.14.0",
"eslint-config-preact": "1.3.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"linkinator": "5.0.2",
"lint-staged": "14.0.1",
"prettier": "2.1.2"
},
"lint-staged": {
"*.{json,css,scss}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint",
"prettier --write"
]
}
}