-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-director-router",
"version": "1.0.3",
"description": "A versatile router",
"main": "dist/main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fernandofranca/react-director-router.git"
},
"author": {
"name": "Fernando de França"
},
"homepage": "https://github.com/fernandofranca/react-director-router",
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint --fix --color --debug --ignore-path .eslintignore ./src/component/js/*",
"start": "cross-env NODE_ENV=development webpack-dev-server --open --config ./webpack.config.babel.js --hot --inline",
"start-example": "cross-env NODE_ENV=development webpack-dev-server --open --config ./webpack.config.example.babel.js --hot --inline",
"build": "gulp && npm run lint && npm test && cross-env NODE_ENV=production webpack --config ./webpack.config.babel.js --display-chunks --display-modules --progress --colors"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
],
"globals": {
"__DEV__": true
},
"testURL": "http://localhost/"
},
"keywords": [],
"dependencies": {
"director": "^1.2.8",
"query-string": "^5.1.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.18.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"del": "^2.2.1",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "^4.17.0",
"extract-text-webpack-plugin": "^2.0.0",
"gulp": "^3.9.1",
"gulp-filelog": "~0.4.1",
"gulp-load-plugins": "^1.4.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"jest-cli": "^19.0.2",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-addons-update": "^15.4.1",
"react-dom": "^15.4.1",
"react-test-renderer": "^15.4.1",
"run-sequence": "^1.2.1",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}