-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 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
{
"name": "dougs-slides",
"version": "2.0.0",
"description": "Doug Wade's slides for his presentations",
"repository": {
"type": "git",
"url": "https://github.com/doug-wade/spectacle-slides.git"
},
"scripts": {
"build": "yarn run clean && yarn run esbuild:build && yarn run eleventy:build",
"clean": "rimraf dist",
"eleventy:run": "cross-env NODE_ENV=development eleventy --config .eleventy.cjs --serve",
"eleventy:build": "cross-env NODE_ENV=production eleventy --config .eleventy.cjs",
"esbuild:build": "cross-env NODE_ENV=production node scripts/build.js",
"esbuild:watch": "cross-env NODE_ENV=development node scripts/watch.js",
"lint": "eslint --ext .js,.jsx .",
"start": "concurrently \"yarn eleventy:run\" \"yarn esbuild:watch\""
},
"author": "Douglas Wade <[email protected]>",
"license": "MIT",
"type": "module",
"dependencies": {
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"spectacle": "^10.1.7"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@babel/eslint-parser": "7.23.10",
"change-case": "^4.0.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"esbuild": "^0.20.0",
"esbuild-plugin-inline-image": "^0.0.9",
"eslint": "^8.56.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.1.1",
"glob": "^10.3.10",
"rimraf": "^5.0.5"
}
}