This repository has been archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "pptx-renderer",
"version": "0.0.8",
"description": "React Renderer for creating Powerpoint File with React. It is a PPTXJS binding for react",
"main": "./build/app.bundle.js",
"scripts": {
"start:demo": "yarn workspace demo start",
"test": "jest --ci",
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"lint": "yarn run eslint \"packages/**/*.js\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcog83/pptx-renderer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcog83/pptx-renderer/issues"
},
"homepage": "https://github.com/marcog83/pptx-renderer#readme",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"engines": {
"yarn": ">=1.22.17"
},
"dependencies": {
"@babel/runtime-corejs3": "7.17.9"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.3",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-regenerator": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-jest": "28.1.0",
"babel-loader": "^8.2.3",
"eslint": "^8.14.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "25.3.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"jest": "27.4.7",
"jest-junit": "^13.0.0",
"webpack": "5.69.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}