-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "electrode-react-ssr-caching",
"version": "0.1.6",
"description": "Optimize React SSR with profiling and component caching",
"main": "lib/ssr-caching.js",
"scripts": {
"test": "npm run build-test && gulp check",
"build-test": "rm -f test/gen-lib/* && babel test/src -d test/gen-lib",
"coverage": "npm run build-test && gulp test-cov"
},
"repository": {
"type": "git",
"url": "git@github.com:electrode-io/electrode-react-ssr-caching.git"
},
"keywords": [],
"author": "Joel Chen <xchen@walmartlabs.com>",
"license": "Apache-2.0",
"optionalDependencies": {
"farmhash": "^1.1.1"
},
"peerDependencies": {
"react": "^15.3.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.9.0",
"electrode-archetype-njs-module-dev": "^1.0.1",
"gulp": "^3.9.1",
"mock-require": "^1.3.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"dependencies": {
"lodash": "^4.13.1"
}
}