-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "react-tiny-dom",
"version": "0.0.1",
"description": "A minimal implementation of react-dom to learn custom renderers",
"main": "index.js",
"scripts": {
"build": "webpack -p",
"copy": "cp index.html dist/index.html && cp favicon.ico dist/favicon.ico && mkdir dist/dist && cp dist/main.js dist/dist/main.js",
"deploy": "rimraf dist && npm run build && npm run copy && gh-pages -d dist",
"start": "webpack-dev-server"
},
"author": "Jiayi Hu <[email protected]>",
"license": "MIT",
"dependencies": {
"deep-diff": "^0.3.8",
"fbjs": "^1.0.0",
"react": "^16.6.1",
"react-reconciler": "^0.18.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"gh-pages": "^1.1.0",
"rimraf": "^2.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"keywords": [
"react",
"react-dom",
"fiber",
"renderer",
"reconciler"
]
}