forked from nitin42/Making-a-custom-React-renderer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 895 Bytes
/
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
{
"name": "Making-a-custom-React-renderer",
"version": "1.0.0",
"description": "Tutorial on how to build a custom React renderer",
"main": "index.js",
"repository": "https://github.com/nitin42/Making-a-custom-React-renderer.git",
"author": "Nitin <tulswani19@gmail.com>",
"license": "MIT",
"dependencies": {
"fbjs": "0.8.4",
"officegen": "^0.4.5",
"react": "16.0.0",
"react-dom": "16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^21.2.1"
},
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/babel src -d build",
"example": "./node_modules/.bin/babel-node ./demo/App.js",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch"
}
}