forked from plouc/react-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-admin",
"description": "React-Admin is a JavaScript library for building admin user interfaces.",
"version": "0.0.1",
"keywords": [
"react",
"admin"
],
"homepage": "https://github.com/rande/react-admin",
"bugs": {
"url": "https://github.com/rande/react-admin/issues"
},
"license": "MIT",
"files": [
"README.md",
"dist/",
"LICENSE",
"CONTRIBUTING.md"
],
"main": "dist/react-admin/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rande/react-admin"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"lodash": "~3.6",
"url": "~0.10",
"superagent": ">=0.21",
"classnames": "~1.2"
},
"peerDependencies": {
"react": ">=0.13",
"react-bootstrap": ">=0.19",
"react-router-bootstrap": ">=0.9"
},
"readmeFilename": "README.md",
"devDependencies": {
"react": "^0.13",
"react-bootstrap": "^0.19",
"react-router": "^0.13",
"react-router-bootstrap": "^0.12",
"react-intl": "^1.2",
"reflux": "~0.2.5",
"amd-optimize": "~0.4.3",
"classnames": "~1.2",
"del": "~1.1.1",
"gulp": "~3.8",
"gulp-less": "~2.0",
"gulp-rename": "~1.2",
"gulp-babel": "~4.0",
"gulp-strip-debug": "~1.0",
"gulp-plumber": "~0.6",
"gulp-regex-replace": "~0.2",
"gulp-concat": "~2.5",
"gulp-sourcemaps": "~1.5",
"jest-cli": "~0.2",
"jest": "~0.1",
"babel-jest": "~4.0",
"vinyl-source-stream": "~1.0",
"vinyl-buffer": "~1.0",
"vinyl-transform": "~1.0",
"gulp-derequire": "~2.0",
"gulp-sass": "~1.3",
"gulp-csso": "~1.0",
"gulp-autoprefixer": "~2.1",
"browser-sync": "~2.2",
"gulp-changed": "~1.1",
"gulp-notify": "~2.2",
"http-server": "~0.7",
"gulp-webserver": "~0.9",
"browserify": "~9.0",
"reactify": "~1.0",
"faker": "~2.1",
"run-sequence": "~1.0",
"gulp-debug": "~2.0",
"gulp-watch-sequence": "0.0",
"gulp-watch": "~4.1",
"gulp-styledocco": "0.0",
"gulp-marked": "~1.0",
"gulp-babel": "~4.0",
"babelify": "~5.0",
"gulp-uglify": "~1.1",
"node-sass": "~3.0.0-pre",
"intl": "~0.1",
"intl-locales-supported ": "1.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/jest-setup.js",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-bootstrap"
],
"testPathDirs": [
"./react-admin"
]
},
"scripts": {
"test": "node ./node_modules/jest-cli/bin/jest.js"
}
}