forked from DuncanCragg/ForestReact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "forest-react",
"version": "0.0.72",
"description": "Simple, powerful alternative to Redux, Reselect, Sagas, etc",
"author": "Duncan Cragg <[email protected]> (http://duncan-cragg.org)",
"license": "MIT",
"keywords": [
"forest",
"forestreact",
"react",
"reactnative"
],
"engines": {
"node": ">=8.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DuncanCragg/forestreact.git"
},
"bugs": {
"url": "https://github.com/DuncanCragg/forestreact/issues"
},
"homepage": "https://github.com/DuncanCragg/forestreact#readme",
"main": "lib/forest-web.js",
"files": [
"lib/"
],
"scripts": {
"build": "babel src examples --out-dir lib --presets es2015 --plugins add-module-exports,transform-react-jsx,transform-class-properties",
"webpack": "webpack --config webpack.config.js",
"lint": "standard \"src/**/*.jsx\"",
"propublish": "npm run clean && npm run lint && npm run build",
"clean": "rm -rf lib"
},
"dependencies": {
"body-parser": "^1.18.3",
"classnames": "^2.2.5",
"express": "^4.16.3",
"lodash": "^4.17.4",
"mongodb": "3.1.0-beta4",
"mosca": "^2.8.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"superagent": "^3.6.0",
"todomvc-app-css": "^2.0.0",
"url-search-params": "^1.0.2",
"ws": "^5.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"standard": "^10.0.2",
"webpack": "^3.5.6"
}
}