-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "react-prepare",
"version": "0.4.0",
"description": "Prepare you app state for async server-side rendering and more!",
"main": "dist/index.js",
"scripts": {
"clean": "node_modules/.bin/rimraf dist",
"lint": "node_modules/.bin/eslint src/**/*.js",
"build": "node_modules/.bin/babel src -d dist --source-maps",
"test": "node_modules/.bin/mocha --compilers js:babel-register src/**/*.spec.js",
"make": "yarn run lint && yarn run clean && yarn run build && yarn run test"
},
"repository": {
"url": "[email protected]:elierotenberg/react-prepare",
"type": "git"
},
"author": "Elie Rotenberg <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.22.0",
"deep-equal": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.0.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.4.1",
"koa": "^1.2.4",
"mocha": "^3.2.0",
"node-fetch": "^1.6.3",
"prettier": "^1.3.1",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"source-map-support": "^0.4.5",
"tcomb": "^3.2.15"
},
"peerDependencies": {
"react": "^15.4.2",
"prop-types": "^15.5.10"
},
"dependencies": {
"babel-runtime": "^6.11.6"
}
}