-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
65 lines (65 loc) · 2.36 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
60
61
62
63
64
65
{
"name": "react-keeper",
"version": "2.2.3",
"description": "A Strong Routing Library of React",
"homepage": "https://github.com/lanistor/react-keeper",
"bug": "https://github.com/lanistor/react-keeper/issues",
"email": "[email protected]",
"scripts": {
"start": "npm run example",
"example": "cross-env NODE_ENV=development node example/serve false",
"test": "jest",
"build": "npm run build-umd && npm run build-min",
"build-umd": "cross-env NODE_ENV=production webpack --config webpack.build.js modules/index.js umd/react-keeper.js",
"build-min": "cross-env NODE_ENV=production webpack --config webpack.build.js -p modules/index.js umd/react-keeper.min.js",
"precompile": "rimraf npm/__build__/** && mkdirp npm/__build__ && npm run copy-file",
"compile": "cross-env NODE_ENV=production babel modules --extensions .js --out-dir npm/__build__",
"copy-file": "cp {modules/index.d.ts,npm/package.json,README.md} npm/__build__/",
"prepub": "npm run compile",
"pub": "npm publish npm/__build__/"
},
"dependencies": {
"prop-types": "^15.5.10",
"create-react-class": "^15.6.0",
"vhistory": "^1.0.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^0.14.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"codecov": "^3.7.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"eslint": "^3.2.0",
"eslint-config-rackt": "^1.1.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.8.0",
"express": "^4.14.0",
"express-urlrewrite": "^1.2.0",
"jest": "^23.6.0",
"react": "^15.6.2",
"react-actor": "^1.0.5",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-boxer": "^1.0.4",
"react-dom": "^15.6.2",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.5.4",
"mkdirp": "^0.5.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-dev-server": "^1.16.2"
}
}