-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 993 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 993 Bytes
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
{
"name": "react-ppt",
"version": "0.1.0",
"description": "Create powerpoint presentations with React",
"main": "src/index.js",
"repository": "https://github.com/albertfdp/react-ppt",
"author": "Albert Fernández",
"license": "MIT",
"scripts": {
"start": "yarn run dev",
"dev": "babel-node example/index.js",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^21.2.1",
"prettier": "^1.9.2",
"prop-types": "^15.6.0",
"unexpected": "^10.36.2"
},
"dependencies": {
"fbjs": "^0.8.16",
"parse-color": "^1.0.0",
"pptxgenjs": "^1.10.0",
"react": "^16.2.0",
"react-reconciler": "^0.7.0",
"yoga-layout": "^1.8.0"
},
"jest": {
"moduleNameMapper": {
"test/expect": "<rootDir>/test/expect.js"
}
}
}