-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.3 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.3 KB
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
{
"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/",
"lib/",
"index.js",
"LICENSE",
"CONTRIBUTING.md"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rande/react-admin"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"lodash": "~2.4.1",
"url": "~0.10.0",
"superagent": ">=0.21"
},
"peerDependencies": {
"react": ">=0.12",
"react-bootstrap": ">=0.15",
"react-router-bootstrap": ">=0.9"
},
"readmeFilename": "README.md",
"devDependencies": {
"react": "^0.12",
"react-bootstrap": "^0.15",
"react-router-bootstrap": "~0.9.1",
"reflux": "~0.2.5",
"amd-optimize": "~0.4.3",
"del": "~1.1.1",
"gulp": "~3.8.10",
"gulp-less": "~2.0.1",
"gulp-rename": "~1.2.0",
"gulp-6to5": "~3.0.0",
"gulp-strip-debug": "~1.0.2",
"gulp-plumber": "~0.6.6",
"gulp-regex-replace": "~0.2.3",
"gulp-concat": "~2.5.2",
"gulp-sourcemaps": "~1.5.0",
"jest-cli": "~0.2.2",
"jest": "~0.1.37",
"6to5-jest": "~3.0.0",
"vinyl-source-stream": "~1.0.0",
"vinyl-buffer": "~1.0.0",
"vinyl-transform": "~1.0.0",
"gulp-derequire": "~2.0.0",
"gulp-sass": "~1.3.3",
"gulp-csso": "~1.0.0",
"gulp-autoprefixer": "~2.1.0",
"browser-sync": "~2.2.2",
"gulp-changed": "~1.1.1",
"gulp-notify": "~2.2.0",
"http-server": "~0.7.5",
"gulp-webserver": "~0.9.0",
"browserify": "~9.0.3",
"reactify": "~1.0.0",
"faker": "~2.1.2",
"run-sequence": "~1.0.2",
"gulp-debug": "~2.0.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/6to5-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-bootstrap"
],
"testPathDirs": [
"./src"
]
},
"scripts": {
"test": "node ./node_modules/jest-cli/bin/jest.js"
}
}