generated from AhsanAyaz/reveal-multi-slides-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
109 lines (109 loc) · 2.67 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "angular-in-90ish",
"version": "4.4.0",
"description": "",
"license": "MIT",
"scripts": {
"dev": "npm run extract && webpack serve",
"build": "npm run extract && cross-env NODE_ENV=production webpack --mode production",
"extract": "node scripts/extractSlideData.js",
"lint": "eslint ./js/**/* --fix",
"serve:prod": "npm run build && npx http-server ./dist -c-1 -o /angular-in-90ish/"
},
"author": {
"name": "Muhammad Ahsan Ayaz",
"email": "ahsan.ubitian@gmail.com",
"web": "https://codewithahsan.dev"
},
"repository": {
"type": "git",
"url": "git://github.com/ahsanayaz/slides.git"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"reveal",
"slides",
"presentation"
],
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.24.4",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"babel-plugin-transform-html-import-to-string": "0.0.1",
"clean-webpack-plugin": "^4.0.0",
"colors": "^1.4.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.12.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-webpack-plugin": "^4.1.0",
"fitty": "^2.3.0",
"gh-pages": "^4.0.0",
"highlight.js": "^11.9.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"marked": "^4.0.12",
"mini-css-extract-plugin": "^2.8.1",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"prettier": "^2.8.0",
"puppeteer": "^22.6.4",
"sass": "^1.75.0",
"sass-loader": "^14.2.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"browserslist": "> 2%, not dead",
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true,
"requireConfigFile": false
},
"globals": {
"module": false,
"console": false,
"unescape": false,
"define": false,
"exports": false
},
"rules": {
"curly": 0,
"eqeqeq": 2,
"wrap-iife": [
2,
"any"
],
"no-use-before-define": [
2,
{
"functions": false
}
],
"new-cap": 2,
"no-caller": 2,
"dot-notation": 0,
"no-eq-null": 2,
"no-unused-expressions": 0
}
},
"dependencies": {
"reveal.js": "^5.1.0",
"uuid": "^9.0.1"
}
}